baekjoon 20260221

This commit is contained in:
songyc macbook 2026-02-21 20:09:22 +09:00
parent 15011a82f9
commit 0c9e8f4844

View 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))