#include using namespace std; int main() { int A,B; cin >> A >> B; assert(1 <= A && A <= 1000 && 1 <= B && B <= 1000); cout << A+B << endl; }