public static void Main()
Console.WriteLine("Please enter your age");
int age = int.Parse(Console.ReadLine());
Console.WriteLine("How many times have you consulted a doctor in the previous year?");
int consult = int.Parse(Console.ReadLine());
{ Console.WriteLine("You are an elder");
Console.WriteLine("You require a vaccination");
{ Console.WriteLine("You are an elder and have consulted more than 6 times");
Console.WriteLine("You require vaccination");
{ Console.WriteLine("You do not require vaccination");
{ Console.WriteLine("You are a child");
Console.WriteLine("You require vaccination");
{ Console.WriteLine("You do not require vaccination");