1# test builtin hex function
2
3print(hex(1))
4print(hex(-1))
5print(hex(15))
6print(hex(-15))
7
8print(hex(12345))
9print(hex(0x12345))
10