// ConsoleApplication1.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>
using namespace std;
int a, b;
int _tmain(int argc, _TCHAR* argv[])
{
	cin >> a >> b;
	cout << a + b;
	return 0;
}