The classic. For each number from 1 to n, print one line:
Fizzif the number is divisible by 3,Buzzif it is divisible by 5,FizzBuzzif it is divisible by both 3 and 5,- otherwise the number itself.
Input
A single integer n.
Output
n lines as described above, in order from 1 to n.