#include<iostream>
using namespace std;

int main()
{
int a, b, sum;
cout<<"Introduceti nr:";
cin>>a>>b;
sum=a+b;
cout<<sum;
return 0;
}