#include <iostream>
#include<fstream>
using namespace std;
int a,b;
int main()
{ifstream f("input");
ofstream g("output");
f>>a>>b;
g<<a+b;
}