import math
Input = 0
Input = input("Please Enter a number: ")
if Input % 2 == 0:
print("" + Input + " is even number.")
else:
print("" + Input + " is odd number.")
import math
Input = 0
Input = input("Please Enter a number: ")
if Input % 2 == 0:
print("" + Input + " is even number.")
else:
print("" + Input + " is odd number.")