`
include<bits/stdc++.h>
using namespace std;
string a,b;
string add(string x,string y){
if(x.empty()) return y;
if(y.empty()) return x;
if(y.size()>x.size()) swap(y,x);
int tail=x.size()-y.size();
int carry=0,tmp=0;
for(int i=x.size()-1;i>=0;i--){
tmp=x[i]-'0'+y[i]-'0'+carry;
if(tmp>=10){
carry=1;
tmp-=10;
}
else{
carry=0;
}
x[i]=tmp+'0';
}
if(carry==1){
x='1'+x;
}
return x;
}
int main(){
cin >> a >> b;
string ans;
ans=add(a,b);
cout << ans << endl;
return 0;
}
`