#include using namespace std; int main() { int x; cout << "Enter x = "; cin >> x; while (x >= 0) { cout << x << ", "; x = x - 3; } cout << endl; return 0; }