print( "----------------------------" ) print( "Log in" ) realUsername = "Jim59" username = input("Username") realPassword = "bananas" userPassword = input( "Password: " ) if userPassword == realPassword and username == realUsername : print( "Welcome!" ) if userPassword != realPassword: print("Sorry, but your password is incorrect") if username != realUsername: print("Sorry, but your username is not recognised")