Computer Science, asked by ratiraj011, 6 months ago

write a program to accept two numbers in python and display odd and even​

Answers

Answered by ps4gamer1412
3

Answer:

Explanation:

#odd or even

a = int(input ("Enter Number : ")

If a%2==0:

print("Even Number)

else:

print ("Odd Number)

Similar questions