using System;
public class Program
{
public static void Main()
//Isis Ríos
string name; //Declare the variable to save name of the user
Console.WriteLine("Welcome to my T-shirt store!");
Console.WriteLine("What´s your name?");
name = Console.ReadLine();
Console.WriteLine("Nice to meet you " + name + "!");
Console.WriteLine(); //Skip a line with an empty WriteLine
Console.WriteLine("What color do you prefer" + "?");
Console.WriteLine("Each T-shirt you buy costs $150. How many T-shirts do you want?");
Console.ReadLine();
Console.WriteLine("The total for 4 t-shirts will be $600 total");
Console.WriteLine("Thank you for helping us with our business " + "!");
Console.WriteLine("Bye" + "!");
}