Fizz Buzz

Fizz Buzz

"Fizz buzz" is a word game we will use to teach the robots about division. Let's learn computers.

You should write a function that will receive a positive integer and return:
"Fizz Buzz" if the number is divisible by 3 and by 5;
"Fizz" if the number is divisible by 3;
"Buzz" if the number is divisible by 5;
The number as a string for other cases.

example

Input: An integer (int).

Output: A string (str).

Examples:

assert checkio(15) == "Fizz Buzz"
assert checkio(6) == "Fizz"
assert checkio(10) == "Buzz"
assert checkio(7) == "7"

How it is used: Here you can learn how to write the simplest function and work with if-else statements.

Precondition: 0 < number ≤ 1000

45