print("--------------") print("Security Check:") realUsername = "jim59" userUsername = input("Enter the username: ") realPassword = "bananas" userPassword = input("Enter the password: ") if userUsername == realUsername : print() else : print("Sorry, but your username is not recognised") if userPassword == realPassword : print() else : print("Sorry, but your password is incorrect") if userPassword == realPassword and userUsername == realUsername : print("Welcome!")