Apply the procedure MysteryPrint (defined below) to the value 2 and record the values that are printed.
procedure MysteryPrint (N)
if $(\mathrm{N}>0)$
then (print the value of $N$ and apply the procedure MysteryPrint to the value $N-2$ )
else (print the value of $N$ and if $(N>-1)$
then (apply the procedure MysteryPrint
to the value $N+1$ ))