This is a fun practice problem in all the different programming languages I know
- Loop through the numbers 1-100
- If a number is divisible by 3, print "fizz"
- If a number is divisible by 7, print "buzz"
- If a number is divisible by both 3 and 7, print "fizzbuzz"
- Otherwise, print the number