返回列表 發帖
  1. s=int(input())
  2. def x(b):
  3.     if b<2:
  4.         return b
  5.     return x(b-1)+x(b-2)
  6. print(x(s))
複製代碼

TOP

返回列表