#include using namespace std; int main() { int add1, add2; while (cin >> add1 >> add2) { cout << add1 + add2 << endl; } }