userusername=input( "Enter your username:") realusername= "Jacob" userpassword=input( "Enter the password: ") realpassword= "Knowles" if userusername == realusername and userpassword == realpassword: print( "That is correct.") print( "You may prooceed.") if userusername != realusername: print( "Your username is incorrect" ) if userpassword != realpassword: print( "Your password is incorrect" )