본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#201 백준 파이썬 [1212] 8진수 2진수

https://www.acmicpc.net/problem/1212

 

#Solution

print(bin(int(input(), 8))[2:])