(백준 알고리즘) 10950호 A+B-3

단계별로 풀기 – for 문 – 2단계

https://www.acmicpc.net/problem/10950

#include <iostream>
using namespace std;
int main()
{
    int A,B,T;    
    cin>>T;

    for(int i=0;i<T;i++)
    {
        cin>>A>>B;
        cout<<A+B<<endl;
    }
    
    return 0;
}