Prompt the user to enter data for 10 employees.If the user try to enter more than 10 employees,it will be an error.For each employee,the user will enter their last name(1 word only),what time they started work today(first ask for the hour,then the minute),and what time they finished work today(first ask for the hour,then the minute).For example,if the person started work at 2.20PM,the user would enter 14 for the hour & 20 for the minute.Note that the time format to be used is 24hours format.Required to validate the data entered correctly,that the employee finished work after they started, & that both times entered are for the same day.The program is to determine how many hours each employee worked that day.It will output a nicely formatted report listing all of the employees along with the amount of time they worked(listed as hours & minutes).The program should output the average amount of time worked.(1 hour-$12,continuously 4 hours of working-additional $10).Required programming style with modules & arrays.