#include using namespace std; int main() { string s; cin >> s; for(char it:s) { if(it == '>')cout << "<"; else cout << ">"; } }