- Write a program that reads in the name and salary of anemployee. Here the salary will denote an hourly wage, such as$9.25. Then, ask how many hours the employee worked in the pastweek. Be sure to accept fractional hours. Compute the pay. Anyovertime work (over 40 hours per week) is paid at 150 percent ofthe regular wage.4 pts
- Your code with comments
- A screenshot of the execution
Test Cases:
Enter name: Jorge
Enter wage: 9.25
Enter hours: 10
                 Total pay is: $92.50
Enter name: John
Enter wage: 20.00
Enter hours: 50
Total pay is: $1100 ($800 + $300overtime)
python, keep it simple