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