lookforafriendPPT
Look for a FriendProblem StatementYou are given a list of names and email IDs...
Look for a FriendProblem StatementYou are given a list of names and email IDs of people who are looking for friends. The list is stored in a single string, with each pair of names and email IDs separated by a newline character (\n). Your task is to write a program that searches for a specific email ID and finds the names of people who are looking for friends and have that specific email ID.Input FormatThe first line contains the string that contains the list of names and email IDs, separated by \n. The second line contains the specific email ID that you need to search for.Output FormatPrint the names of people who are looking for friends and have the specific email ID, sorted alphabetically, followed by the count of such names.Sample InputSample OutputExplanationThe list contains three pairs of names and email IDs. The second pair, Bob bob@example.com, has the email ID bob@example.com, which is the email ID we are searching for. Therefore, the output contains the name Bob and a count of 1, indicating that there is one person with the specific email ID bob@example.com looking for friends.