Create a Python script which will accept two positive integers where the first
number would be the start of a range and the second number would be the end of a
range. Then the application will determine the sum of all EVEN numbers and sum of all
ODD numbers from the given range.
Sample Output:
Start of a Range: 5
End of a Range: 10
Sum of Even nos. is 24
Sum of Odd nos. is 21
Comments