#include <iostream>
#include <string>
#include <algorithm>
using namespace std;

int main() {
    string s = "element";
    rotate(s.begin(),s.begin()+(s.length()-3),s.end());
    cout << s;
}