#include <stdio.h> main() { char ch1[10],ch2[10]; scanf("%s",ch1); printf("%s\n",ch1); fflush(stdin); gets(ch2); puts(ch2); return 0; }