← Back to List
1373번: 2진수 8진수 ↗
Solutions
Python 3
81 B | 81 chars
a=input() a=int(a,2) a=oct(a) a=list(a) a=a[2:] for i in a: print(i,end='')