public static void Main()
Console.WriteLine("Where are you going to be for the holidays");
string country = Console.ReadLine();
Console.WriteLine("In which date period are we");
string date = Console.ReadLine();
Console.WriteLine("How many nights are you staying");
int nights = Convert.ToInt16( Console.ReadLine() );
if ( country == "France" )
else if ( date == "24-27" )
else if ( date == "28-31" )
if ( country == "Italy" )
else if ( date == "24-27" )
else if ( date == "28-31" )
if ( country == "Germany" )
else if ( date == "24-27" )
else if ( date == "28-31" )
Console.WriteLine("Easter trip to " + country + " is: " + fee * nights + " lv.");