s=input();n=m=0 for t in map(int,s):n=(n*4+t)%3;m=(m*4+t)%5 print('Fizz'*(n<1)+'Buzz'*(m<1)or s)