#include int main(){int i,j;char str[100];gets(str);puts(str);for(i=0;str[i]==' ';i++);for(j=0;str[j++]=str[i++];);puts(str);return 0;}