t80.py 86 B

1234
  1. def test(x,y):
  2. print x
  3. return y
  4. test('a', 1) or test('b', 1) and test('c', 0)