public static void Main()
Console.WriteLine("Enter Age: ");
int age = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter Area (A or B): ");
string area = Console.ReadLine();
Console.WriteLine("The fees is RM 7.");
Console.WriteLine("The fees is RM 10.");
Console.WriteLine("You entered an incorrect area.");
Console.WriteLine("The fees is RM 10.");
Console.WriteLine("The fees is RM 15.");
Console.WriteLine("You entered an incorrect area.");