본문 바로가기
코테/백준(Phython)

9498 시험점수

by Wanado 2022. 8. 23.
728x90
score = int(input())

if  score < 60:
    print("F") 
elif score < 70:
    print("D") 
elif score < 80:
    print("C") 
elif score < 90:
   print("B") 
else:
   print("A")
728x90

'코테 > 백준(Phython)' 카테고리의 다른 글

10926 ??!  (0) 2022.08.21
1008 A/B , 3003  (0) 2022.08.21
18108 입력값에 조건 주기  (0) 2022.08.19
2557 Hello World 출력  (0) 2022.08.19