using System; namespace first {class a{static void Main() {char Alphabet='A'; while (Alphabet<='Z'){ Console.WriteLine(Alphabet); Alphabet++;} }}}