Answer:
<em>The program written in Python is as follows (See Explanation Section for detailed explanation)</em>
password = "chEEzburg3rz"
userpassword = input("Enter Password: ")
if userpassword == password:
print("Access granted....")
else:
print("Access Denied")
Explanation:
The programming language was not stated; However, I answered your question using Python
The line initializes the password to chEEzburg3rz"
password = "chEEzburg3rz"
This line prompts user for input
userpassword = input("Enter Password: ")
This if condition checks if user input corresponds with the initialized password
if userpassword == password:
<em> print("Access granted....") </em>If yes, this line is executed
else:
<em> print("Access Denied") </em>If otherwise, this line is executed