import std.algorithm; import std.array; import std.conv; import std.math; import std.stdio; import std.string; int readint() { return readln.chomp.to!int; } int[] readints() { return readln.split.map!(to!int).array; } string calc(string s) { char[] cs; foreach_reverse (c; s) { cs ~= c == '<' ? '>' : '<'; } return cs.dup; } void main() { string s = readln.chomp; writeln(calc(s)); }