문제의 소재
두 정수 A, B를 입력받아 A+B를 출력하는 문제이다.
해답
// BOJ_1000.cpp
#include <iostream>
using namespace std;
int main()
{
int A, B;
cin>>A>>B;
cout<<A+B<<endl;
return 0;
}
반응형
두 정수 A, B를 입력받아 A+B를 출력하는 문제이다.
// BOJ_1000.cpp
#include <iostream>
using namespace std;
int main()
{
int A, B;
cin>>A>>B;
cout<<A+B<<endl;
return 0;
}
댓글