#8506: AC:JAVA


beastgame (多多)


import java.util.Scanner;

public class JAVA {

    public static void main(String[] args) {
        int a, b;
        Scanner input = new Scanner(System.in);
        while (input.hasNext()) {
            a = input.nextInt();
            b = input.nextInt();
            System.out.println(a + b);
        }
    }
}