//A+B(1000)
import java.util.Scanner;
public class BJ1000 {
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);
sc.close();
}
}
import java.util.Scanner;
Scanner sc = new Scanner(System.in);
반응형