public static void Main()
Console.WriteLine("Enter the amount of hours worked");
hoursWorked = double.Parse(Console.ReadLine());
Console.WriteLine (" The gross pay in Bangladash for this amount of hours is : $" + CalculatePay(hoursWorked, 0.15));
Console.WriteLine (" The gross pay in China for this amount of hours is : $ " + CalculatePay(hoursWorked, 0.48));
Console.WriteLine (" The gross pay in Dominican Republic for this amount of hours is : $" + CalculatePay(hoursWorked, 1.60));
Console.WriteLine (" The gross pay in Haiti for this amount of hours is : $" + CalculatePay(hoursWorked, 0.55));
static double CalculatePay (double hw, double pr)