PRB10: FizzBuzz // Beginner

 
Rotato Farms has contracted you yet again! This time they need you to help them compete in a FizzBuzz competition.
Given a number, you must return 'buzz' if the number is divisible by 5, 'fizz' if the number is divisible by 3, or 'fizzbuzz' if the number is divisible by both 5 and 3. If no string is to be returned, then your program must return the same number.

Input Format

Given a integer n.

Sample Input

33

Output Format

Return a String representing the output of the FizzBuzz algorithm.

Sample Output

fizz




You must be logged in to submit a solution.