public static void Main()
Console.Write("Type the number of shirts: ");
noshirts = Convert.ToInt32(Console.ReadLine());
total = noshirts * price1;
total = noshirts * price2;
total = total - (total * discount);
Console.WriteLine("The cost of {0} shirts is ${1}", noshirts, total);