When the provided integer n is divisible by 3, print fizz. When the provided integer is divisible by 5, print buzz. When it is divisible by both 3 and 5, print fizzbuzz. Otherwise print the integer.

You need to fill in a condition (using Boolean operators) for each of the four cases.