from functools import * @cache def f(n): if n<2:return 1 s,j,k=0,n-1,2 while j>=0:t=f(j);s+=[-t,t][k//2&1];j-=[k//2,k][k&1];k+=1 return s *map(print,map(f,range(100))),