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