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

#include "stdafx.h"
#include<iostream>

int _tmain(int argc, _TCHAR* argv[])
{ int a,b;
	std::cin>>a>>b;
	std::cout<<a+b;
}