realUser = "jim21" userUser = input( "Enter the username: " ) realPassword = "corn" userPassword = input( "Enter your the password: " ) if userPassword == realPassword : print( "Welcome!" ) else: print( "Sorry, But this password is incorrect" ) if userUser == realUser : print( "Username Recognized!") else: print( "Sorry This Username is not recognized" )