잉?

Codeup 1351 : 구구단 출력하기 2 본문

알고리즘_Algorism/Codeup

Codeup 1351 : 구구단 출력하기 2

Jye_647 2019. 7. 22. 23:28

 

https://codeup.kr/problem.php?id=1351

 

1351 : 구구단 출력하기 2

start, end = map(int, input().split())

for i in range(start, end+1):
    for j in range(1, 10):
        print(str(i) + '*' + str(j) + '=' + str(i*j))

 

Comments