#include int main() { int a, b; char c[100]; scanf("%d%d", &a, &b); gets(c); printf("%d\n%s\n", a + b, c); return 0; }