username = ("jim59") password = ("bananas") correct = 0 print( "----------------------------" ) print( "Security Check:" ) if username == input( "What is your username?:"): correct = correct + 1 if password == input( "What is your password?:"): correct = correct + 1 if correct == 2: print("Welcome!") else: print("Sorry, but your username or password is not reconised")