View Code of Problem 109

#include <iostream>
#include <cstdio>
using namespace std;
int main(){
    int n;
    cin>>n;
    while(n--){
        int A,B;
        cin>>A>>B;
        cout<<A+B<<endl;
    }
    return 0;
}

Double click to view unformatted code.


Back to problem 109