1# test short circuit expressions outside if conditionals
2print(() or 1)
3print((1,) or 1)
4print(() and 1)
5print((1,) and 1)
6