Exception handling to detect input string vs. integerThe given program reads a list of single-word first names and ages (ending with -1), and outputs that list with the age incremented. The program fails and throws an exception if the second input on a line is a string rather than an integer. At FIXME in the code, add try and except blocks to catch the ValueError exception and output 0 for the age.Ex: If the input is:Lee 18Lua 21Mary Beth 19Stu 33-1then the output is:Lee 19Lua 22Mary 0Stu 34IN PYTHON PLEASE