public static void Main()
Console.WriteLine("Welcome");
Console.WriteLine("What's your name?");
Console.WriteLine("Nice to meet you" + " "+ name );
Console.WriteLine("What color do you want?");
color=Console.ReadLine();
Console.WriteLine("Each T-Shirt you buy costs $150. How many T-Shirts do you want? ");
a = int.Parse(Console.ReadLine());
Console.WriteLine("The total for " + a + " " + color + " " + "will be $" +product);
Console.WriteLine("Thank you for helping us with our busissnes " + name + " " + " !");
Console.WriteLine("Goodbye!");