print((10>3) and (15>6)) # both conditions are true so, the result is true
print((1>5) and (43==6)) # both conditions are false so, the result is false
print((1==1) and (2!=2)) # one condition is false(right operand) so, the result is false
################
print((10>3) and (15>6))
print(10 > 3 and 15 > 6) # this expression is same as above
################
print((10>20) and (4==4))