#include <iostream>
using namespace std;
int main () {
int c, b;
cin >> c >> b;
while(c >= b) {
cout << c << " ";
--c;
}
return 0;
Объяснение:
#include <iostream>
using namespace std;
int main () {
int c, b;
cin >> c >> b;
while(c >= b) {
cout << c << " ";
--c;
}
return 0;
}
Объяснение: