#include int main(){ char S[21]; int i; scanf("%s",S); for(i = 0; S[i] != 0; i++){ if(S[i] == '<'){ printf(">"); }else{ printf("<"); } } }