s=input();n=0;p=1 for t in s[::-1]:n+=int(t)*p;p*=4 print('Fizz'*(n%3<1)+'Buzz'*(n%5<1)or s)