#include <fstream>
using namespace std;

int main()
{
	ifstream fin("input.txt");
	ofstream fout("output.txt");
	int a,b;
	fin >> a >> b;
	fout << a + b;
	fin.close();
	fout.close();
	return 0;
}