# test errors operating on bignum
i = 1 << 65
try:
i << -1
except ValueError:
print("ValueError")
len(i)
except TypeError:
print("TypeError")
1 in i