#include #include using namespace std; int main() { int one = (int)(cos(NULL)); int three = (int)(cos(NULL) + cos(NULL) + cos(NULL)); int five = (int)(cos(NULL) + cos(NULL) + cos(NULL) + cos(NULL) + cos(NULL)); int fifteen = three * five; int n; cin >> n; for (int i = one; i <= n; ++i) { if (i % fifteen == NULL) { cout << "FizzBuzz" << endl; } else if (i % three == NULL) { cout << "Fizz" << endl; } else if (i % five == NULL) { cout << "Buzz" << endl; } else { cout << i << endl; } } return NULL; }