1 2 3 4 5 6 7 8
# Test class special methods, that use a bigint. class A: def __int__(self): return 1 << 100 print(int(A()))