2 lines
100 B
Text
2 lines
100 B
Text
def F(x): if x == 0 then M(x) else 1 end; # NOT POSSIBLE
|
|
def M(x): if x == 1 then F(x) else 2 end;
|