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