← Back to List

1212번: 8진수 2진수 ↗

Solutions

Python 3
44 B | 44 chars
a= input()
a=int(a,8)
a=bin(a)

print(a[2:])