using System;
public class Program
{
public static void Main()
Random r = new Random();
int q = r.Next(1, 100+1);
Console.WriteLine(q);
}