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