Write a program to display all the odd numbers and even numbers in a range given by user. Also display the sum at the end.
Answers
Answered by
0
Answer:
Python
```
import random
x = input("enter your 1st number')
y = input("enter your 2nd number')
print(random.range(x, y))
```
Similar questions