Fizz abbreviation

Fizz is often used as an abbreviation for "Fizzbuzz," a coding challenge typically used in job interviews or programming courses. The Fizzbuzz challenge requires participants to write a program that prints the numbers from 1 to 100, but with some exceptions: numbers that are multiples of 3 should be replaced with the word "Fizz" and numbers that are multiples of 5 should be replaced with the word "Buzz." Numbers that are multiples of both 3 and 5 should be replaced with "FizzBuzz." The challenge tests the participant's understanding of basic programming concepts such as loops and conditional statements.