#include<iostream.h>
int main();
{int a,b,c;
cin>>a>>b;
c=a+b;
cout<<c;
cin.get();
cin.get();
return 0;
}