Run ID:99176
提交时间:2024-11-24 14:33:27
def a(n): if n <=2: return eles: return a(n - 2) n = int(input()) print(a(n))