Note

[codeup] 108. 8진수 16진수 변환 본문

etc/Coding Test

[codeup] 108. 8진수 16진수 변환

알 수 없는 사용자 2022. 1. 7. 19:32
728x90
n = int(input())
print(format(n,'o'), format(n,'x').upper())
Comments