using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoloLearn
{
class Program
{
static void Main(string[] args)
{
Random rnd = new Random(1);
int x = rnd.Next();
int y = rnd.Next();
Console.WriteLine(x);
Console.WriteLine(y);
}
}
}