fizzbuzz
fizzbuzz copied to clipboard
use three buffers of 100 numbers each and increase by 300
As n = n + 300 (mod 15), this algorithm takes three buffers of 100 numbers each, writes them into output, and increases numbers (that aren't divisible by 3 and 5) by 300in each buffer (using decimal addition with carries)