← Back to List

2998번: 8진수 ↗

Solutions

Python 3
42 B | 42 chars
a=input()
a=int(a,2)
a=oct(a)
print(a[2:])