NOJ/57/main.c

10 lines
146 B
C
Raw Permalink Normal View History

2020-08-31 16:46:43 +00:00
#include <stdio.h>
int main(void){
char str1[1024], str2[1024];
scanf("%s",str1);
scanf("%s",str2);
printf("%s%s\n",str1,str2);
return 0;
}