PS/BOJ
[백준] 8진수 2진수
RUBY_루비
2020. 9. 30. 23:59
출처:: www.acmicpc.net/problem/1212
분류::
1. 문제 이해 및 해결과정
2. 풀이방법
#8진수 2진수
#https://www.acmicpc.net/problem/1212
import sys
sys.stdin = open("input.txt","r")
input=sys.stdin.readline
print(bin(int(input(),8))[2:])
3. 오답원인
4. 알게된 점