# 코딩 문제 관련/파이썬

Baekjoon 9498번(python)

Hwiyong Jo 2019. 4. 27. 01:32

score = int(input())

if(score >= 90 and score <= 100):
    print('A')
elif(score >= 80 and score <= 89):
    print('B')
elif(score >= 70 and score <= 79):
    print('C')
elif(score >= 60 and score <= 69):
    print('D')
else:
    print('F')