Can someone help me fix this code? DAY 13 Gradebook Builder

Question:

Repl link:

print("Exam Grade Calculator")
nameOfExam = input("What is the name of your exam?")
print("The maximum possible score for this exam was 50.")
score = input("What score did you recieve in your", nameOfExam, "?")
percentage = (score/50)*100
if percentage => float("90"), round 
   print("Fab, you got an A+!")
else:
   print("Boo sucks to you:(")

There is an error in the if percentage part, but I forgot how to construct this part of the code. Can someone help me?

8 posts were merged into an existing topic: Day 013 - Project 13 : Grade Generator