程式內容
while 1:
acc=input("請輸入帳號?")
pwd=input("請輸入密碼?")
if acc == "abc"and pwd=="123":
print("登入成功")
break
else:
print("登入失敗")