#include #include #include #include #include #include #define loop while(1) #define SZ(x) ((int)(x).size()) #define REP(i,n) for(int i=0, i##_len=(n); i #define VVI vector typedef long long int ll; using namespace std; int main() { string str,tmp_str; string solve_str; cin>>str; string treestr = "treeone"; int tmp=0; REP(i,str.length()){ if(str[i]==treestr[tmp]){ tmp_str +=str[i]; tmp++; } else { tmp_str+=str[i]; solve_str+=tmp_str; tmp_str.clear(); tmp=0; } if(tmp_str == treestr){ solve_str+="forest"; tmp=0; tmp_str.clear(); } } if(tmp_str.length() !=0)solve_str+=tmp_str; cout<