#include <fstream>
#include <iostream>
using namespace std;

//ifstream F("p.in");
//ofstream G("p.out");

#define F cin
#define G cout

int a,b;

int main()
{
    F>>a>>b;
    G<<a+b<<'\n';
}