2. Write a Python code that asks a user to enter a value for n and lets a user to enter either positive or negative integers n times. The code prints the average value of these n integers, the sum of all positive integers and the sum of all negative integers. Observe the sample run, you need to increase a number# value for each input. Sample Run#1 How many numbers? 4 Number#1: 12.5 Number#2: -12 Number#3: 13.5 Number#4: -13 The average of these number is 0.25 ​