using System; using System.Collections.Generic; class Program { /// /// プログラムのエントリポイント /// /// static void Main(string[] args) { string s = Console.ReadLine(); s = s.Replace("<", "-"); s = s.Replace(">", "<"); s = s.Replace("-", ">"); Console.WriteLine(s); } }