[10824] 네 수

코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <iostream>
#include <string>
using namespace std;

int a, b, c, d;
string sa, sb, sc, sd;

int main(void) {
	cin >> a >> b >> c >> d;
	sa = to_string(a);
	sb = to_string(b);
	sc = to_string(c);
	sd = to_string(d);
	sa += sb;
	sc += sd;
	cout << stoll(sa) + stoll(sc) << "\n";
	return 0;
}

Leave a comment