티스토리 뷰

카테고리 없음

BOJ)10824 네 수

광그로 2017. 6. 20. 06:17

https://www.acmicpc.net/problem/10824


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <iostream>
#include <string>
#include <cstring>
using namespace std;
 
int main()
{
    int input[4];
    for (int i = 0; i < 4; i++) {
        cin >> input[i];        
    }
    string tmp1 = to_string(input[0]) + to_string(input[1]);
    string tmp2 = to_string(input[2]) + to_string(input[3]);
 
    cout << stol(tmp1) + stol(tmp2);
    return 0;
}
cs


공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
글 보관함