Console.WriteLine("What Month Were You Born?")
month = console.ReadLine()
case "January" : Month = "January"
case "February" : Month = "February"
case "March" : Month = "March"
case "April" : Month = "April"
case "May" : Month = "May"
case "June" : Month = "June"
case "July" : Month = "July"
case "August" : Month = "August"
case "September" : Month = "September"
case "October" : Month = "October"
case "November" : Month = "November"
case "December" : Month = "December"
Console.Writeline(" The month you chose is {0}, which has the birthstone {1} ", month, answer)