#include int main() { int x, y; scanf("%d%d", &x, &y); do { if (x % 15 == 0) { puts("FizzBuzz"); } else if (x % 3 == 0) { puts("Fizz"); } else if (x % 5 == 0) { puts("Buzz"); } else { printf("%d\n", x); } x++; } while (x <= y); return 0; }