#include int main(void){ int a, b, i; char str[80]; scanf("%d %d\n", &a, &b); fgets(str, sizeof(str), stdin); printf("%d\n%s", a+b, str); return 0; }