Question 1: (25 points) For program below 1. Give an example of input to receive a following output: 6 not in the list 2. Give an example of input to receive a following output: 2 [3, 3] def guess(my_list, num): count = 0 new=[] for i in my_list: if(i == num): count = count+1 new.append(i) return count, new def main(): my_list = [0]*5 for i in range(5): my_list[i]=int(input("enter list element ")) num_to_look = int(input("enter integer ")) count, new = guess(my_list, num_to_look) if (count > 0): print(count, new) else: print(num_to_look, "not in the list ") main()