public static void Main()
Console.WriteLine("Welcome to Aquinas Multiplex,\nWe are currently showing:\n1. Teenage Horror film (BBFC) (15) \n2. How I Live Now (BBFC) (15) \n3. Another Marvel Film (BBFC) (12) \n4. Filth (BBFC) (18) \n5. Planes (BBFC) (U)");
Console.WriteLine("Which movie would you like to see? (1-5)");
int movie = int.Parse(Console.ReadLine());
Console.WriteLine("You have chosen Teenage Horror Film");
Console.WriteLine("You have chosen How I Live Now");
Console.WriteLine("You have chosen Another Marvel Film");
Console.WriteLine("You have chosen Filth");
Console.WriteLine("You have chosen Planes");
Console.WriteLine("Access Denied - No such film");
while (movie < 1 || movie > 5);
Console.WriteLine("Enter your age: ");
int age = int.Parse(Console.ReadLine());
Console.WriteLine("You are too young to watch this movie, we cannot allow you to view this");