잉?

Codeup 1265 : 구구단 출력하기 1 본문

알고리즘_Algorism/Codeup

Codeup 1265 : 구구단 출력하기 1

Jye_647 2019. 7. 14. 22:18

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

 

1265 : 구구단 출력하기 1

dan = int(input())

for i in range(1, 10):
    print(str(dan) + '*' + str(i) + '=' + str(dan*i))
Comments