using System;
public class Program
{
public static void Main()
Console.WriteLine("Would you like to remove a country");
string country = Console.ReadLine();
string[] holiday = new string[5];
holiday[0]= "greece";
holiday[1]= "france";
holiday[2]= "germany";
holiday[3]= "switzerland";
holiday[4]= "england";
int maxinum = holiday.Length;
int pointer = -1;
int data = 0;
}