#include using namespace std; int main() { int n; cin >> n; int one{}; one++; int three{}; three++, three++, three++; int five{}; five++, five++, five++, five++, five++; for(int i = one; i <= n; i++) { if(!(i % three)) { cout << "Fizz"; } if(!(i % five)) { cout << "Buzz"; } if(i % three and i % five) { cout << i; } cout << endl; } }