1# test builtin oct function
2
3print(oct(12345678901234567890))
4print(oct(0o12345670123456701234))
5