def main(): hours = int(input('enter hours worked this week ')) rate = float(input('enter hourly pay rate ')) grossPay = hours * rate print("Gross pay: $",format(grossPay,',.2f'),sep="") main()