realUsername = "jim98"
userUsername = input ("What's your username?")

realPassword = "12345"
userPassword = input ("Whats your password")

if userUsername == realUsername and userPassword == realPassword:
    print ("Welcome")

elif userUsername!= realUsername:
    print ("User name is not recognised")

elif userPassword!= realPassword:
    print ("Password is incorrect")