View Code of Problem 113

#include <bits/stdc++.h>
 
using namespace std;
 
int main() {
    int n, m;
    while (cin >> n >> m) {
        cout << n + m << endl << endl;
    }
    return 0;
}

Double click to view unformatted code.


Back to problem 113