using System; class Sample { public static void Main() { string str = Console.ReadLine(); for(int i = 0; i < str.Length; i++) { if (char.IsUpper(str,i)) { string st = str[i].ToString(); st.ToLower(); Console.Write(st); } if (Char.IsLower(str, i)) { string st = str[i].ToString(); st.ToUpper(); Console.Write(st); } } Console.WriteLine(); } }