[BAEKJOON] 2739 : 구구단 - python3 1 2 3 N = int(input()) for i in range(1,10,1): print(N,"*",i,"=",N*i) cs Study/BAEKJOON 2021.08.05