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