Run ID:99179
提交时间:2024-11-24 14:34:10
def a(n) if n <= 2: return 1 else: return a(n - 1) + a(n - 2) n = int(input()) print(a(n))