본문 바로가기

Algorithm/BaekJOON(Python)

[백준/입출력/2739] 구구단

이미지 클릭시, 문제로 이동됩니닷 :)

startNum = int(input())
nums = [1,2,3,4,5,6,7,8,9]
for i in nums:
  print(f"{startNum} * {i} = {startNum*i}");