using c = System.Console;
public static void Main()
c.Write("Enter your Employee's ID: ");
EmployeesID = c.ReadLine();
c.Write("Enter your Last Name: ");
c.Write("Enter your First Name: ");
FirstName = c.ReadLine();
c.Write("Enter your rate per hour:");
rph = Convert.ToDouble(c.ReadLine());
c.Write("Enter your total worked Hours/Months");
thw = Convert.ToDouble(c.ReadLine());
Console.Write(LastName + " " + FirstName + " , " + " your total earnings for this month is " + total);