From 0c9e8f4844019da986e112254bc7c18d6facf42b Mon Sep 17 00:00:00 2001 From: songyc macbook Date: Sat, 21 Feb 2026 20:09:22 +0900 Subject: [PATCH] baekjoon 20260221 --- code_study/Baekjoon/python/24724.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 code_study/Baekjoon/python/24724.py diff --git a/code_study/Baekjoon/python/24724.py b/code_study/Baekjoon/python/24724.py new file mode 100644 index 0000000..6e97eb7 --- /dev/null +++ b/code_study/Baekjoon/python/24724.py @@ -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)) \ No newline at end of file