public static void Main()
Console.WriteLine("how many cars have you made today");
int carNumber = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("how many hours have you worked today");
int hoursWorked = Convert.ToInt32(Console.ReadLine());
double moneyyyyyy = (carNumber*0.6)+(hoursWorked*12);
Console.WriteLine ("You will earn £"+moneyyyyyy);