5 lines
98 B
Text
5 lines
98 B
Text
b1 = true //value of 1
|
|
b2 = false //value of 0
|
|
print b1 and b2
|
|
print b1 or b2
|
|
print not b1
|