Problem Description Write a program which takes input 10 integer array which contains positive and negative numbers and find out the average of positive and average of negative numbers. Test Case 1 Input (stdin) 10 5 -5 -10 2 -2 -3 3 15 -15 Expected Output The total of negative numbers=-35 The total of positive numbers=35 The average of negative numbers=-7 The average of positive numbers=7 Test Case 2 Input (stdin) 10 -9 8 -7 6 -5 4 -3 2 -1 Expected Output The total of negative numbers=-25 The total of positive numbers=30 The average of negative numbers=-5 The average of positive numbers=6