반응형
https://www.acmicpc.net/problem/9498
# @Author YoungMinKim
# baekjoon
score = int(input())
if score>=90 and score<=100:
print('A')
elif score>=80:
print('B')
elif score>=70:
print('C')
elif score>=60:
print('D')
else:
print('F')
반응형
'백준 문제풀이' 카테고리의 다른 글
baekjoon - python - 2108 (0) | 2020.08.27 |
---|---|
baekjoon - python - 9653 (0) | 2020.08.27 |
baekjoon - python - 9316 (0) | 2020.08.27 |
baekjoon - python - 8958 (0) | 2020.08.27 |
baekjoon - python - 8393 (0) | 2020.08.27 |
댓글