6 lines
94 B
Python
6 lines
94 B
Python
|
def even(x):
|
||
|
if x & 0x01 == 0:
|
||
|
return 1 // even
|
||
|
else:
|
||
|
return 0 // odd
|