#define _USE_MATH_DEFINES #include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //tuple #include //deque #include //INT_MAX #include //bitset #include //sqrt, ceil. M_PI, pow, sin #include //fixed #include //setprecision #include //stringstream #include //gcd, assumlate #include //randam_device #include //numeric_limits using namespace std; constexpr long long int D_MOD = 1000000007; int main() { string S, T; cin >> S; while (S.find("treeone", 0) != -1) { S.replace(0, 7, "fores0"); } for (unsigned int i = 0; i < S.size(); i++) { if (S.at(i) == '0') { S.at(i) = 't'; } } cout << S << endl; return 0; }