7 lines
175 B
Text
7 lines
175 B
Text
|
|
def M:
|
||
|
|
def F: if . == 0 then 1 else . - ((. - 1) | F | M) end;
|
||
|
|
if . == 0 then 0 else . - ((. - 1) | M | F) end;
|
||
|
|
|
||
|
|
def F:
|
||
|
|
if . == 0 then 1 else . - ((. - 1) | F | M) end;
|