Find and fix the IndentationError
This program is supposed to print "Yes!" when n is positive, but Python raises IndentationError. Read the error message carefully and fix it.
n = 5
if n > 0:
print("Yes!")
Step 1 — Predict the error
Read the program. Which kind of error (or non-error) will Python raise?