Computer Science/백준 알고리즘
[백준] 10951번 A+B -4 (C++)
roytravel
2022. 6. 21. 22:15
#include <iostream>
using namespace std;
int main(void)
{
int A = 0;
int B = 0;
while(cin >> A >> B)
{
cout << A+B << endl;
}
return 0;
}