본문 바로가기

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

#202 백준 파이썬 [1373] 2진수 8진수

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

 

#Solution

print(oct(int(input(), 2))[2:])