public static void Main()
Console.WriteLine("Hello !!!");
Console.WriteLine(" What´s your name? ");
buyer=Console.ReadLine();
Console.WriteLine("Well " + buyer + " What color do you want? " );
color=Console.ReadLine();
Console.WriteLine(" Each " + color + " T-shirt you buy costs $150. How many T-shirts do you want?" );
shirts=int.Parse(Console.ReadLine());
Console.WriteLine(" That will be " + multi + "$");
Console.WriteLine(" Thank you for helping us with our business," + buyer + "!");
Console.WriteLine("Bye " + buyer + " see you later");