#include using namespace std; typedef long long unsigned int ll; int main() { int N; int a = 'b' - 'a'; int b = 'd' - 'a'; int c = 'f' - 'a'; scanf( "%d", &N ); int n = N; while( n-- ){ int tmp = N-n; if( !(tmp % b) ){ printf("Fizz"); } if( !(tmp % c) ){ printf("Buzz"); } if( tmp % b && tmp % c ){ printf("%d", tmp); } printf ("\n"); } return (int)NULL; }