f(s,d){s%d||printf(d-3?"Buzz":"Fizz")&&f(s/d,d);} a,i;main(s){for(;i++<100;)printf(i%3&&i%5?"%d\n":"\n",i,f(i,5,f(i,3)));}