realUsername = "jim59" userUsername = input( "Username: " ) realPassword = "bananas" userPassword = input( "Password: " ) if userUsername == realUsername and userPassword == realPassword: print ( "Welcome to the system. " ) elif userUsername != realUsername : print ( "Username is not recognised " ) elif userPassword != realPassword : print ( "Not getting in today, Buddy. " )