Computer Science, asked by mohamadstop11, 2 months ago

write a program that enter a number x then display if its even or odd

Answers

Answered by richitha77
0

Explanation:

python programming

x=int(input())

if(x%2==0):

print("even")

else:

print ("odd")

Similar questions