#include<cstdio>
int main() {
    int x, y;
    while (scanf("%d%d", &x, &y) != EOF) {
        printf("%d\n", x + y);
    }
    return 0;
}