This commit is contained in:
2023-07-03 20:20:25 +02:00
parent abea187f67
commit 09861a2f4f

14
grading.py Normal file
View File

@@ -0,0 +1,14 @@
a, b, c, d, e = map(int, input().split())
score = int(input())
if score >= a:
print("A")
elif score >= b:
print("B")
elif score >= c:
print("C")
elif score >= d:
print("D")
elif score >= e:
print("E")
else:
print("F")