#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
  string s;
  cin >> s;
  cout << s;  
  if (s != "ham") {
    cout << "ham" << '\n';
  } else {
    puts("");
  }
  return 0;
}