문제
URL : https://codeup.kr/problemsetsol.php?psid=23
소스코드
// 정수 2개 입력 받아 합 출력2
// input : 2147483647 2147483647
// output : 4294967294
#include <iostream>
using namespace std;
int main()
{
unsigned _int32 n1, n2;
cin >> n1 >> n2;
cout << (n1 + n2);
return 0;
}