using System; using System.Linq; class No163{ static void Main(){ var a=Console.ReadLine(); foreach(char b in a){ char c; if(char.IsLower(b)) c=char.ToUpper(b); else c=char.ToLower(b); Console.Write(c); } } }