package easy;
import java.util.Scanner;
/**
*poj1000 easy
* @author NC
*/
public class Poj1000 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
if (scan.hasNext()) {
System.out.println(scan.nextInt() + scan.nextInt());
}
}
}
poj1000

