#include <iostream>
using namespace std;

int main()
	
{
	int a,b;
	cout<<"introduceti a si b";
	cin>>a>>b;

	return a+b;
}