int2.py 120 B

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