문자열도 +가 가능한 것을 알게 되었다.
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;
int main() {
string a, b, c, d;
cin >> a >> b >> c >> d;
string temp1 = a + b;
string temp2 = c + d;
long long result= stoll(temp1) + stoll(temp2);
cout << result;
return 0;
}