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