1 2 3 4 5 6 7 8
s$ = "" t$ = "" for i = 1 to 80 s$ = s$ + str$(mod(i, 10)) t$ = t$ + "i" next i print s$ print t$