A+B
2022. 11. 12. 18:01ㆍ개인적인 공부/백준
문제 1000번
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a, b;
a = sc.nextInt();
b = sc.nextInt();
System.out.println(a + b);
sc.close();
}
}
출력
1
2
3