Coding Test/백준_Python
[백준/python] 2739번 - 구구단
J동진
2020. 6. 23. 00:10
n = int(input())
for i in range(1,10):
print('{} * {} = {}'.format(n, i, n*i))