public static void Main()
Console.WriteLine("Enter your age for age restricted movie ratings");
vNum1 = int.Parse(Console.ReadLine());
Console.WriteLine("You can watch G and PG rated movies");
Console.WriteLine("You can watch M rated movies with a parent");
Console.WriteLine("You can watch M and MA15+ movies");
Console.WriteLine("You can watch R18+ movies");
Console.WriteLine("Do you want to check your age restrictions again? y/n");
vAnswer = Console.ReadLine();
Console.WriteLine ( "Program ended" ) ;