#include <iostream>
int main() 
{ string str;
  while (std::cin >> str)  
   std::cout << str << endl;
}

 
