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
31
32
33
34
35
36
37
38
39
40
#include<bits/stdc++.h>
using namespace std;

int w(string &s, int poz){
    if(poz >= s.size())
        return 0;
    else
        return ((int)s[poz] - '0');
}


int main(){
    string s1, s2, s3;
    cin >> s1 >> s2;
    s3 = "";
    for(int i = 0, j = s1.size() - 1 ; i < j ; i++, j--){
        swap(s1[i], s1[j]);
    }
    for(int i = 0, j = s2.size() - 1 ; i < j ; i++, j--){
        swap(s2[i], s2[j]);
    }
    // cout << s1 <<"\n" << s2<<"\n";
    int jeden_dalej = 0;
    for(int i = 0 ; i < max(s1.size(), s2.size()) ; i++){
        int x, y;
        x = w(s1, i);
        y = w(s2, i);
        // cout << x << " " << y <<": ";
        int wynik = x + y + jeden_dalej;
        // cout << (char)((wynik % 10) + '0') << " " << wynik / 10 <<"\n";
        jeden_dalej = wynik / 10;
        s3 +=  (char)((wynik % 10) + '0');
    }
    if(jeden_dalej)
        s3 += '1';
    for(int i = 0, j = s3.size() - 1 ; i < j ; i++, j--){
        swap(s3[i], s3[j]);
    }
    cout << s3 <<"\n";
}