correct_username = "example_user" correct_password = "Password123" username = input("Enter your username: ") password = input("Enter your password: ") if username != correct_username: print("The entered username is incorrect.") elif password != correct_password: print("The entered password is incorrect.") else: print("Welcome! You have successfully logged in.")