본문 바로가기
카테고리 없음

백준 10824 c++

by park_hama 2024. 8. 6.

문자열도 +가 가능한 것을 알게 되었다.

#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;
}