10951번: A+B - 4

문제접근🤔


놓쳤던 부분😅


코드😁


KB

ms

#include <iostream>
using namespace std;

int main()
{
    int a,b;

    while (1)
    {
        cin >> a >> b;
        cout << a + b << endl;
    }
    
    return 0;
}