알고리즘
백준 C++ 2558번
pkiop
2017. 8. 15. 13:09
#include
using namespace std;
int main(void)
{
int a, b;
cin >> a >> b;
cout << a + b;
}