baekjoon 20260221
This commit is contained in:
parent
15011a82f9
commit
0c9e8f4844
15
code_study/Baekjoon/python/24724.py
Normal file
15
code_study/Baekjoon/python/24724.py
Normal file
@ -0,0 +1,15 @@
|
||||
import sys
|
||||
input = sys.stdin.readline
|
||||
|
||||
str1 = "Material Management "
|
||||
str2 = "Classification ---- End!"
|
||||
|
||||
ans = []
|
||||
for t in range(int(input())) :
|
||||
ans.append(str1 + str(t+1))
|
||||
ans.append(str2)
|
||||
|
||||
for _ in range(int(input())+1) :
|
||||
input()
|
||||
|
||||
print("\n".join(ans))
|
||||
Loading…
x
Reference in New Issue
Block a user