def check(a):
 print("Even" if a % 2 == 0 else "Odd") 
check(12)

What will be the output of the following code snippet?

Posted on by