// I SELL YOU...! #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; using P = pair; void init_io(){ cin.tie(0); ios::sync_with_stdio(false); cout << setprecision(10); } signed main(){ init_io(); string a,b; cin >> a >> b; bool check = true; for(char c:a){ if(c!='-'&&(c>'9'||c<'0')){ check = false; } } for(char c:b){ if(c!='-'&&(c>'9'||c<'0')){ check = false; } } if(!check){ cout << a + b <