Program is working
def even_or_odd(num): return 'Even' if num % 2 == 0 else 'Odd'
Loading collection data...