#include using namespace std; int main() { char str[255]; while( scanf("%s", &str) != EOF ) { printf("%s\n",str); } return 0; }