#include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); string s; cin >> s; reverse(s.begin(), s.end()); for(int i = 0; i < s.size(); i++) { cout << (s[i] == '<' ? '>' : '<'); } cout << '\n'; return 0; }