#include int main(int argc, char *argv[]){ int A, B; char str[80]; scanf("%d%d%s", &A, &B, str); printf("%d %s\n", A+B, str); return 0; }