문제접근
놓쳤던 부분
코드
KB
ms
#include <iostream>
using namespace std;
int main()
{
int a,b;
while (1)
{
cin >> a >> b;
if(a == 0 && b == 0)
{
break;
}
cout << a + b;
}
return 0;
}
C++
복사