def fibs(n):
if n==1 or n==2:
return ____①____
else:
return _____②_____
m=int(input("请输入一个整数:"))
for i in range(1,m+1):
print(___③___ ,end=",")