Update solution for 구구단 w/ id 5276471
Time: 64ms MemUsage: 29160KB
This commit is contained in:
5
baekjoon/구구단/solution_5276471.py
Normal file
5
baekjoon/구구단/solution_5276471.py
Normal file
@@ -0,0 +1,5 @@
|
||||
N = int(input())
|
||||
str = ""
|
||||
for i in range(1,10) :
|
||||
str = str + "{} * {} = {}\n".format(N,i,N*i)
|
||||
print(str)
|
||||
Reference in New Issue
Block a user