https://www.acmicpc.net/problem/9498
파이썬에서는 case문이 존재하지 않는다.
대신 if-elif-else
문을 권장한다.
import sys
fast_input = sys.stdin.readline
fast_output = sys.stdout.write
score = int(fast_input().rstrip())
if score >= 90:
fast_output("A")
elif score >= 80:
fast_output("B")
elif score >= 70:
fast_output("C")
elif score >= 60:
fast_output("D")
else:
fast_output("F")