#include using namespace std; int main() { int a,b,s; scanf("%d",&a); scanf("%d",&b); s=a+b; printf("%d\n",s); return 0; }