#include <iostream> 

using namespace std;

/*
 * 
 */
void main() {
    int a,b;
    
    cin >> a >> b;
    cout << a+b;
}