first commit
from old repository to a new repository
This commit is contained in:
12
boj/9498.py
Normal file
12
boj/9498.py
Normal file
@@ -0,0 +1,12 @@
|
||||
a=int(input())
|
||||
|
||||
if a>=90:
|
||||
print("A")
|
||||
elif a>=80:
|
||||
print("B")
|
||||
elif a>=70:
|
||||
print("C")
|
||||
elif a>=60:
|
||||
print("D")
|
||||
else:
|
||||
print("F")
|
||||
Reference in New Issue
Block a user