9498. 시험 성적

py_code·2020년 11월 18일
0

백준-브론즈4

목록 보기
7/51
score = int(input())
if score >= 90: print('A')
elif score >= 80 : print('B')
elif score >= 70 : print('C')
elif score >= 60 : print('D')
else : print('F')
profile
개발자를 꿈꿉니다.

0개의 댓글