# If-elif-else for AI model evaluation
accuracy = 0.85
if accuracy > 0.9:
    print("Model is excellent!")
elif accuracy > 0.8:
    print("Model is good!")
else:
    print("Model needs improvement.")
print("Evaluation complete.")