write a program that enter a number x then display if its even or odd
Answers
Answered by
0
Explanation:
python programming
x=int(input())
if(x%2==0):
print("even")
else:
print ("odd")
Similar questions