using System; using System.Linq; public class P0163 { public static void Main() { var result = String.Join("", Console.ReadLine().ToCharArray().Select(c => Char.IsUpper(c) ? Char.ToLower(c) : Char.ToUpper(c))); Console.WriteLine(result); } }