Fizz Buzz is a classic programming challenge that appears in coding interviews. For numbers to N: If divisible by , print "Fizz"
If divisible by , print "Buzz"
If divisible by both and , print "FizzBuzz"
Otherwise, print the number itself This tests your ability to order conditions correctly. The key question: what happens when a number is divisible by both and ? Which condition should you check first to handle this case?