본문 바로가기

[SW][BEAKJOON]/[SW][BEAKJOON][반복문]

[BEAKJOON][반복문][2739][Python] 구구단

반응형

PROBLEM

  - Link

Approach to the problem

  - 

Code

# 구구단 만들기
# 입력 : 숫자 (1~9)
# 출력 : 구구단 출력

N = int(input())

for i in range(1,10) :
	print(N, "*", i, "=", N*i)

End

  - 

반응형