코딩테스트/Lv1
[Python] 백준 온라인 저지 1550번
ggulgood
2022. 4. 11. 03:38
16진수
16진수 수를 입력받아서 10진수로 출력하는 프로그램을 작성하시오.
정답
print(int(input(), 16))