Console.WriteLine("1) Tank Top $7")
Console.WriteLine("2) Short Sleeve $8")
Console.WriteLine("3) Long Sleeve $10")
Console.WriteLine("Enter the type of shirt")
type = Console.ReadLine()
Console.WriteLine("Enter the number of shirts")
count = Console.ReadLine()
Console.WriteLine("You purchased {0} {1} shirts. The total (with shipping) is ${2}", count, desc, price*count*1.1 )