Run ID:99164

提交时间:2024-11-24 14:29:42

def a(n): if n <= 2: return 1 else: return a(n - 1) + a(n - 2) n = int(input()) print(a(n))