#include <stdio.h> #include <stdlib.h> int main() { int a,b,s; scanf("%d %d",&a,&b); s=a+b; printf("%d",s); return 0; }