write a function that receives an octal number and print equivalent in decimal , binary and hexa decimal using python code example
Example: python library to convert decimal into octal and hexadecimal
dec =13
print(bin(dec),oct(dec),hex(dec)) #prints decimal,octal,hexadecimal value of 13