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