# get number of integers INT(0,100,n) # loop until we find the 0 WHILE (n!=0) # if it's not 0, make sure it's not 1 either ASSERT (n!=1) # count out the remaining numbers REP(n) SPACE INT(1,1000) END NEWLINE # get number of integers INT(0,100,n) # done END NEWLINE