#include int main(void){ char str1[1024], str2[1024]; scanf("%s",str1); scanf("%s",str2); printf("%s%s\n",str1,str2); return 0; }