#LOGIN SYSTEM username = "THURSDAY" password = "9DAYS" while True: entered_username = input("Enter your username: ") entered_password = input("Enter your password: ") if entered_username == username and entered_password == password: print("Login successful!") break # stop the loop if login is successful else: print("Invalid username or password. Please try again.")