728x90
https://www.acmicpc.net/problem/1357
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main() {
string x, y;
cin >> x >> y;
string a = "";
string b = "";
for (int i = x.size() - 1; i >= 0; i--) {
a += x[i];
}
for (int i = y.size() - 1; i >= 0; i--) {
b += y[i];
}
int temp = stoi(a) + stoi(b);
string result = "";
while (true) {
if (temp / 10 == 0) {
result += (temp % 10 + '0');
break;
}
result += (temp % 10 + '0');
temp /= 10;
}
cout << stoi(result);
return 0;
}
728x90
'알고리즘 문제' 카테고리의 다른 글
[백준] 2010번 플러그 (0) | 2020.03.23 |
---|---|
[백준] 1476번 날짜 계산 (0) | 2020.03.23 |
[백준] 1074번 Z (0) | 2020.03.23 |
[백준] 11066번 파일 합치기 (0) | 2020.03.20 |
[백준] 9325번 얼마? (0) | 2020.03.20 |