728x90
def solution(num):
    if num % 2 == 0:
        return "Even"
    else:
        return "Odd"
728x90

+ Recent posts