1# test bignum unary operations
2
3i = 1 << 65
4
5print(bool(i))
6print(+i)
7print(-i)
8print(~i)
9