begin { int i; string[int] nums; i = 0; while (i < 100) { nums[i] = itoa(i); i = i + 1; } i = i - 1; while (i >= 0) { put nums[i]; i = i - 1; } }