username = ( input("username:") ) password = ( input("password:") ) if (username == "jim59"and password == "bananas"): print("Welcome") elif (username == "jim95"and password == "apples"): print("sorry but your username is not recognised") else: print(" sorry but thats not right")