Write a program in C++ that asks the user to input 2 lists of numbers, 5 numbers per list. Your program should
identify the common numbers in the lists or the numbers that are present in both lists. See sample lists and
output below.
Input:
List 1: 20 3 59 1 3 List 1: 3 5 86 31 23 List 1: 53 43 76 123 645
List 2: 1 20 1 4 3 List 2: 21 54 87 13 7 List 2: 435 445 6 12 76
Output: 20 3 1 Output: None Output: 76