Run ID:130178
提交时间:2025-09-07 20:36:42
n = int(input()) if n >= 90: print("A") elif n >= 70: print("B") elif n >= 60: print("C") else: print("D")