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