Requirements: o The program must feature a List which will contain Tuples. o The Tuples should contain two values, a Name and an Age. • This is an example of how the list: [ (“Alice”, “30”), (“Bob”, “40”), (“Charlie”, “50”) ] o The program should also feature a loop with the prompts for the following options: • Add friend • List friends • Quit o The user should select the appropriate option from the list using an integer input. o For adding a friend, the program should prompt the user for the name and age of the friend then add these values as a single tuple into the list. o For listing friends, the program should output and list all the friends using the following format: `“Name: {NAME}, Age: {AGE}”` o For quitting, the program should terminate the loop