import java.util.Scanner;
class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println(a + b);
}
}
import java.util.Scanner;
class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int m = sc.nextInt();
//중첩 for문 : 한 행(바깥 for문)에 여러개의 별표(안쪽 for문)가 찍히고,다음 행(바깥 for문)에 여러개의 별표(안쪽 for문)가 찍히고...
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
//print() : 그냥 출력
System.out.print("*");
}
//println() : 출력 + 행 바꿈
System.out.println();
}
}
}
바깥 for문: 행
안쪽 for문: 열