using System; class ZdravoNanize { static void Main() { int i = 10; while(i >= 1) { Console.WriteLine("{0}. Zdravo!", i); i--; } } }