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