C++ please
6. 36 lab: contact list
a contact list is a place where you can store a specific contact with other associated information such as a phone number, email address, birthday, etc. write a program that first takes as input an integer n that represents the number of word pairs in the list to follow. word pairs consist of a name and a phone number (both strings), separated by a comma. that list is followed by a name, and your program should output the phone number associated with that name. output "none" if name is not found.
ex: if the input is:
3 joe,123-5432 linda,983-4123 frank,867-5309 frank
the output is:
867-5309
your program must define and call the following function. the return value of getphonenumber is the phone number associated with the specific contact name.
string getphonenumber(vector namevec, vector phonenumbervec, string contactname)
hint: use two vectors: one for the string names, and the other for the string phone numbers