1# test basic int operations 2 3# test conversion of bool on RHS of binary op 4a = False 5print(1 + a) 6a = True 7print(1 + a) 8