Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
84398 丁俊杰 参赛组别推荐 Python3 Accepted 41 MS 3768 KB 207 2024-07-15 18:52:13

Tests(10/10):


Code:

n=int(input()) if n<8: print("You are too young!") elif 8<=n<=12: print("Welcome to Junior Class!") elif 13<=n<=18: print("Welcome to Senior Class!") else: print("You are too old!")