Answer:
In Python:
grade = float(input("Enter a Number: "))
if grade >= 90:
print("Great!")
Step-by-step explanation:
This prompts the user for grade
grade = float(input("Enter a Number: "))
This checks for input greater than or equal to 90
if grade >= 90:
If yes, this prints "Great"
print("Great!")