public static void Main()
Console.WriteLine("KARINA GUADALUPE SERRANO CALVA 1°E");
Console.WriteLine("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);
Console.WriteLine("The cost shirts of" + noshirts + " shirts is $" + total);