realpassword = "1234" Userpassword = input("Enter the password") if Userpassword == realpassword: print("Correct!") print("Access Granted") else: print("Incorrect!") print("Ur bad")