2. 运行以下程序,当从键盘上输入123456,显示“密码正确!”,输入其他内容都显示“密码错误!”,请完善程序。
x=input()
if x== ① :
print("密码正确!")
② :
print("密码错误!")