#include <cstdio> using namespace std; int a,b; int main() { while(scanf("%d %d",&a,&b)!=EOF) { printf("%d\n",a+b); } }