DECLARE SUB A(n) DECLARE SUB B(n) SUB A(n) IF n>0 THEN B(n-1) END SUB SUB B(n) PRINT "@" IF n>1 THEN A(n-3) END SUB