WuBuzz

Write a short program that prints each number from 1 to n on a new line.

For each multiple of 3, print "Wu" instead of the number.

For each multiple of 5, print "Tang" instead of the number.

For numbers which are multiples of both 3 and 5, print "WuTang Forever" instead of the number.

Example Output

1
2
Wu
4
Tang
Wu
7
8
Wu
Tang
11
Wu
13
14
WuTangForever