#include <iostream>
#include <string>

int main()
{
  using namespace std;

  string line;
  while (getline(cin >> ws, line))
    cout << "got: " << line << endl;
  return 0;
}
