Respuesta :

Answer:

In Python:

grade = float(input("Enter a Number: "))

if grade >= 90:

   print("Great!")

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!")