#include using namespace std; int main() { for (int x = 100; x >= 1; x -= 1) { if (x == 1) { cout << x << endl; } else { cout << x << ", "; } } return 0; }