using System.Collections.Generic;
using System.Text.RegularExpressions;
public static void Main(string[] args)
Console.Title = "Aakula Amusement Park";
Console.BackgroundColor = ConsoleColor.Black;
Console.ForegroundColor = ConsoleColor.Gray;
Console.WriteLine("Hey there! Welcome to the Aakula Amusement park");
Console.Write("Please enter your age ");
int age=Convert.ToInt16( Console.ReadLine() );
Console.Write("Please enter your height ");
int height=Convert.ToInt16( Console.ReadLine() );
if (age>=18 && height>=160)
Console.WriteLine("Here's your ticket, enjoy your time in the park\nThank you");
Console.WriteLine("Sorry, the requirements are not met");