public static void Main()
Console.WriteLine("Made by David Alejandro Morales Sosa");
Console.WriteLine("-------------------------------");
Console.WriteLine("How many shirts are you buying?");
shirts = Convert.ToInt32(Console.ReadLine());
int price1 = shirts * 12;
Console.WriteLine("The total cost will be {0}, no discount", price1);
if (shirts > 5 && shirts < 100) {
int price2 = shirts * 10;
Console.WriteLine("The total cost will be {0}, you save $2 per shirt!", price2);
double price3 = (shirts * 10);
double discount = price3 * .10;
double finalprice = price3 - discount;
Console.WriteLine("The total cost will be ${0}, you save a 10% of the total!", finalprice);