XJTU_Python/test/5/1.py

4 lines
70 B
Python

n = int(input())
print(bin(n)[2:])
print(oct(n)[2:])
print(hex(n)[2:])