You have to get a new driver's license and you show up at theoffice at the same time as 4 other people. The office says thatthey will see everyone in alphabetical order and it takes 20minutes for them to process each new license. All of the agents areavailable now, and they can each see one customer at a time. Howlong will it take for you to walk out of the office with your newlicense? Task Given everyone's name that showed up at the sametime, determine how long it will take to get your new license.Input Format Your input will be a string of your name, then aninteger of the number of available agents, and lastly a string ofthe other four names separated by spaces. Output Format You willoutput an integer of the number of minutes that it will take to getyour license. Implement the code in java