6 lines
76 B
Text
6 lines
76 B
Text
a = 13
|
|
if a mod 2 = 0
|
|
print a & " is even"
|
|
else
|
|
print a & " is odd"
|
|
.
|