using namespace std; int main() { int A,B; cin >> A ; cin >> B ; if(A >= 0 && B <= 10e8) { cout << A+B <<endl; }else{ return 0; } }