#lang rhombus/static
for (i in 1..=100):
match math.gcd(i, 15)
| 15: println("fizzbuzz")
| 3: println("fizz")
| 5: println("buzz")
| _: println(i)