Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
68087 金浩 参赛组别推荐 Python3 Accepted 34 MS 3768 KB 198 2024-03-19 08:26:11

Tests(10/10):


Code:

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