#include void f1(int m, int n, int *t){ *t = m+n;}int main(){ int m,n,t; scanf("%d%d",&m,&n); f1(m,n,&t); printf("%d\n", t); return 0;}