package study;
import java.util.Scanner;
public class demo1 {
public static void main(String[] args) {
// TODO 自动生成的方法存根
Scanner input = new Scanner(System.in);
int a = input.nextInt();
int b = input.nextInt();
int c = a+b;
System.out.println(c);
}
}