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