def stairs(n): return (n==1 or n==2) and 1 or (stairs(n-1)+stairs(n-2)) print(stairs(3))
1520
617
603
258
202
近期评论