#include <iostream>
#include <string>
#include <sstream>

using namespace std;
int main()
{
  stringbuf buffer;
  
  if (cin >> &buffer)
    {
          string s = buffer.str();
          cout << s;
    }
  else
    {
      cout << "IO-Fehler";
    }
}
