6 lines
72 B
Text
6 lines
72 B
Text
a = true
|
|
b = false
|
|
print a and b
|
|
print a or b
|
|
print a xor b
|
|
print not a
|