In this problem, you will make a program to help Paul find the result of N
using the rules of FizzBuzz.
The rules of FizzBuzz are the following:
N
given is divisible by 3 output Fizz
N
given is divisible by 5 output Buzz
N
given is divisible by both 3 and 5 output FizzBuzz
N
The input will consist of one positive integer: N
The output will be the result of N
according to the rules
15
FizzBuzz
7
7