How would you implement a Fizzbuzz algorithm? (print each integer 1...100 but if it is a multiple of 3 print "fizz" instead, and if it is a multiple of 5 print "buzz" instead.
Sigiloso
your solution doesnt take care of when the number is both a multiple of 3 and 5, such as 15, 30 , "fizzbuzz" should be printed in this case