using System;
public class Program
{
public static void Main()
Random r = new Random();
int max = 1000;
int number = r.Next(0, max);
string guess = Console.ReadLine();
Console.WriteLine("Your guess is {0}; The actual number is {1}", guess, number);
}