View Code of Problem 113

#include<iostream>
using namespace std;
int main(void){
    int a, b;
    int flag = 0;
    while(cin >> a >> b){
        if(flag)
            cout << endl;
        flag = 1;
        cout << a + b << endl;

    }
}

Double click to view unformatted code.


Back to problem 113