questionList=[]
for i in range(1,4):
	print(f'我是ai小助手，你的第{i}个问题是:')
	question = input()
	questionList.append(question)
	print(questionList)