using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main()
{
Rnd();
Rnd();
Rnd();
}
static Random _r = new Random();
static void Rnd()
{
int num = _r.Next();
Console.WriteLine(num);
}
}
}
/*
run:
671830693
1700910643
571562320
*/