Binary number System
Octal Number System
Decimal Number System
Hexadecimal Number System
i=int(input("enter number "))
print("binary number",bin(i))
print("octal format ",oct(i))
print("decimal format",i)
print("hexadecimal format",hex(i))