Fix the Comparison
This program uses = instead of == for comparison. Fix it!
Example input: secret
Expected output: Correct!
💡 Hints
?Hint 1
🔒Hint 2
🔒Hint 3
python
password = input()
if password = "secret":
print("Correct!")
else:
print("Wrong!")