#include int main(void) { int a, b; scanf("%d", &a); scanf("%d", &b); int c = a + b; printf("%d", c); return 0; }