FIZZ BUZZ CHALLENGE
What is Fizz Buzz?
The FizzBuzz challenge is a classic coding project for beginners. The task is simple: Print numbers from the least to the greatest. Print the word “Fizz Buzz” if a number is divisible by 5 and 3, print the word “Fizz” if a number is divisible by only 5, print the word “Buzz” if a number is divisible by only 3, and finally print the number if it is not divisible by 5 or 3.