Python/CodeUp
1033 - 10진 정수 입력받아 16진수로 출력하기2
GLOWWW
2021. 2. 18. 18:18
dec = input()
print("%0X" % int(dec))