print("Who do you think I am?")
input()
print("Oh,yes!")
用if改写,只有你回答Marry时,程序回复"Oh,yes"
回答其他任何答案时,回复"No,I'm not"
print("Who do you think I am?")
input()
print("Oh,yes!")
用if改写,只有你回答Marry时,程序回复"Oh,yes"
回答其他任何答案时,回复"No,I'm not"
print("Who do you think I am?")
anw=input()
if anw=="Marry":
print("Oh,yes!")
else:
print("No,I'm not")