i=int(input()) if i%3==0: if i%5==0: print('FizzBuzz') else: print('Fizz') if i%5==0: if i%3==0: print('FizzBuzz') else: print('Buzz') else: print(i)