#include int main(void) { char s[19]; int c=0; int d=0; scanf("%s",s); int p=strlen(s); int o=strlen(s); while(!(p==0)){ if(strchr(s,'>')){ printf("%c",'<'); p=p-1; }else if(strchr(s,'<')){ printf(">"); p=p-1; } } return 0; }