K12教育赛事综合服务平台
专注青少年竞赛题库网站
聚乐之家官方网站
下载聚乐之家官方App
n = 30 if n > 10: print("A") elif n > 20: print("B") elif n == 30: print("C") else: print("D")
A
B
C
D