def even_or_odd(num):
if num%2==0: return "the number {} is Even".fromat(num) else: return "the number {} is Odd".format(num)