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