#include #include int main(void) { int a, b; char *str; str = (char*)calloc(sizeof(char), 11); scanf("%d %d", &a, &b); scanf("%s", &str); printf("%d\n%s\n", (a+b), str); free(str); return 0; }