Download numbers.txt file from Canvas, in the Lab 04 folder. The numbers.txt file contains a long list of random numbers. Copy the file to your hard drive and then write a program that opens the file, reads all the numbers from the file, and calculates the followings: A) The number of even numbers in the file. B) The number of odd numbers in the file C) The sum of even numbers in the file. D) The sum of odd numbers in the file. E) The average of all even numbers in the file. F) The average of all odd numbers in the file. The program should print all the above values (A-F) in a file (inData.txt) as shown below. Number of even numbers: 99 Number of odd numbers: 101 Sum of even numbers: 49930.00 Sum of odd numbers: 55597.00 Average of even numbers: 504.34 Average of odd numbers: 550.47 Check if the input file exists and round the even and odd averages to two decimal places. Download numbers.txt file from Canvas, in the Lab 04 folder. The numbers.txt file contains a long list of random numbers. Copy the file to your hard drive and then write a program that opens the file, reads all the numbers from the file, and calculates the followings: A) The number of even numbers in the file. B) The number of odd numbers in the file C) The sum of even numbers in the file. D) The sum of odd numbers in the file. E) The average of all even numbers in the file. F) The average of all odd numbers in the file. The program should print all the above values (A-F) in a file (inData.txt) as shown below. Number of even numbers: 99 Number of odd numbers: 101 Sum of even numbers: 49930.00 Sum of odd numbers: 55597.00 Average of even numbers: 504.34 Average of odd numbers: 550.47 Check if the input file exists and round the even and odd averages to two decimal places