Programming/Python & Data Structures
[Baekjoon/Python3] 1373번 2진수 8진수
HooNeee
2020. 12. 3. 00:49
[Baekjoon/Python3] 1373번 2진수 8진수
1373번: 2진수 8진수
첫째 줄에 2진수가 주어진다. 주어지는 수의 길이는 1,000,000을 넘지 않는다.
www.acmicpc.net
print(oct(int(input(), 2))[2:])