etc/Coding Test

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

Jun's N 2022. 1. 7. 19:32
n = int(input())
print(format(n,'o'), format(n,'x').upper())
728x90