Fizz

Write a program that counts up to a limit, such as 32.

However, if the number is divisable by 3 it should print fizz instead of the number.

Here is some of the expected output:

1
2
fizz
4
5
fizz
7
8
fizz
10
11
fizz
13
14
fizz
16
17
fizz
19
...