Create 1741.c

pull/19/head
KiritoTRw 2016-05-26 07:34:50 +08:00
parent 0d0c9fe4ef
commit 58e2d0723b
1 changed files with 19 additions and 0 deletions

19
QUSTOJ/1741.c Normal file
View File

@ -0,0 +1,19 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
char a[1024];
char b[1024];
char c[1024];
int main()
{
gets(a);
gets(b);
int L=strlen(b);
int i;
for(i=0;i<L;i++)
{
c[L-1-i]=b[i];
}
printf("%s%s\n",a,c);
return 0;
}