using System;
public class Program
{
public static void Main()
int pocet = 0;
while(pocet < 2)
Console.WriteLine("Ahoj!");
pocet = pocet + 1;
}