#include #define REP(i,n) for(int i=0; i<(n); i++) #define REP2(i,x,n) for(int i=x; i<(n); i++) using namespace std; struct CWW{CWW(){ios::sync_with_stdio(false);cin.tie(0);}}cww; int main() { string S; cin >> S; reverse( S.begin(), S.end() ); REP( i, (int)S.size() ){ cout << ( S[i]=='<' ? '>' : '<' ); } cout << endl; return 0; }