realUsername = "Art69" realPassword = "dragonfruit" userUsername = input("What is your username? ") userPassword = input("What is your password? ") if userUsername == realUsername: if userPassword == realPassword: print("You may proceed!") else: print("You shall not pass!") else: print("You shall not pass!")