Run ID:98975
提交时间:2024-11-23 20:25:33
n = int(input()) def a(n): if n <= 2: return 1 else: return a(n-1)+a(n-2) print(a(n))