#includeint main(){char s[110];char x[10];scanf("%s %s",s,x);char *p = s+2;while (x[0]) {char tmp = *p;*p = x[0];x[0] = tmp;p++;}printf("%s\n",s);return 0;}