Note

[codeup] 89. 16진수 구구단 출력하기 본문

etc/Coding Test

[codeup] 89. 16진수 구구단 출력하기

알 수 없는 사용자 2021. 12. 19. 19:10
728x90
word = input()
n  = int(word,16)
for i in range(1,16):
  print('%X'%n, '*%X'%i, '=%X'%(n*i), sep='')
Comments