Python/백준
[1212] 8진수 2진수
류경혜
2022. 8. 14. 17:40
octNumber = int(input(), 8)
print(bin(octNumber)[2:])