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