← Back to List

24724번: 현대모비스와 함께하는 부품 관리 ↗

Solutions

Python 3
310 B | 278 chars
"""
[24724: 현대모비스와 함께하는 부품 관리](https://www.acmicpc.net/problem/24724)

Tier: Bronze ??
Category: 구현
"""


def solution():
  for tc in range(int(input())):
    print(f'Material Management {tc + 1}')
    print('Classification ---- End!')


if __name__ == '__main__':
  solution()