TASK 3-Q2

PERUMAL S - Jul 18 - - Dev Community

Write a program that takes an integer as input and checks if it is even or odd

a= int(input("type your number:"))
if ((a%2)==0):
print("your number is even:")
else:
print("your number is odd:")

. . . . . . . . . . . .
Terabox Video Player