user = "jim59" pas = "bananas" username = input("Enter your username ") userpass = input("Enter your password ") if username == user and userpass == pas: print("Welcome back") else: print("The username or password is incorrect")