public static void Main()
Console.WriteLine("GUSTAVO PEDRAZA");
Console.WriteLine("Enter your name: ");
string name = Console.ReadLine();
Console.WriteLine("Hi {0}, how many hours did you worked?", name);
int hours = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Your payment will be ${0}", payment);
int ExtraHours = hours - 30;
payment2 = ExtraHours * (1.5 * 5) + 150;
Console.WriteLine("Your payment will be ${0}", payment2);