Enter 5 numbers, the program check each number, tells how many numbers are even and odd numbers. 1. Create func.py, create a function "CheckEvenOdd(num)", print a message to tell this is number is even or odd, returns 1 if num is even, returns 0 if odd. 2. Create Run.py, import func.py to run.py, have users to enter five numbers, call "CheckEvenOdd(num)" on each number. tells how many numbers are even and odd numbers.