/** @file 725.cpp @title No.725 木は明らかに森である - yukicoder @url https://yukicoder.me/problems/no/725 **/ #include using namespace std; typedef long long LL; #define ALL(obj) (obj).begin(), (obj).end() #define REP(i, N) for (int i = 0; i < (N); ++i) int main() { string S; cin >> S; while (1) { auto pos = S.find("treeone"); if (pos != string::npos) { S.replace(pos, 7, "forest"); } else { break; } } cout << S << endl; return 0; }