using System;
public class Program
{
public static void Main()
Random rnd = new Random();
int rastgele = rnd.Next(1,10);
Console.WriteLine(rastgele);
while (rastgele == 3)
Console.WriteLine("sayı üretme programı durdu");
break;
}