z=lambda y:sum(map(int,[x for x in y])) n,s=input(),'' if z(n)%3<1:s+='Fizz' if(z(n[0::2])-z(n[1::2]))%5<1:s+='Buzz' print(s if s else n)