etc/Coding Test
[codeup] 89. 16진수 구구단 출력하기
Jun's N
2021. 12. 19. 19:10
word = input()
n = int(word,16)
for i in range(1,16):
print('%X'%n, '*%X'%i, '=%X'%(n*i), sep='')
728x90