#include<stdio.h> int main() { char input[40]; while(gets(input)) { printf("%s\n",input); } return 0; }