Skip to content

Commit

Permalink
[#4] Feat: Add 구구단
Browse files Browse the repository at this point in the history
  • Loading branch information
letsjo committed Mar 29, 2023
1 parent c9d2fbf commit 4554fc5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions 2739.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 구구단

N = int(input())

for i in range(1, 10):
print(f'{N} * {i} = {N*i}')

0 comments on commit 4554fc5

Please sign in to comment.