__author__ = 'Polo-Dev'
x = float(input("Enter your number: "))
if x % 2 == 0:
print('The number is Even')
else:
print('This number is odd')
x = float(input("Enter your number: "))
if x % 2 == 0:
print('The number is Even')
else:
print('This number is odd')
No comments:
Post a Comment