print("-------------------------------")
print("Hello user, enter username and password below")

username = "keegan21"
password = "keeganiscool"

userdata = input("Username: ")
userpassword = input("Password: ")

if userdata == username:
    if userpassword == password:
        print("Welcome! ")
else:
    print("Sorry, your password is incorrect")