#include <iostream>
#include <string>
#include <limits>

int main()
{
   std::string line;

   // Ignore the rest of the line.
   std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');

   getline(std::cin,line);
   std::cout << line << std::endl;

   return 0;
}
