알고리즘/백준
A + B - 4
슈도코드
2019. 9. 14. 20:46
#include <iostream>
using namespace std;
int main(void)
{
int A, B;
while (cin>>A>>B)
{
cout << A + B << '\n';
}
return 0;
}
EOF 해결 문제.