fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int t; cin >> t;
  6. while(t--){
  7. int n, k; cin >> n >> k;
  8. int a[n];
  9. for(int i=0; i<n; i++) a[i] = n-i;
  10. for(int i=0; i<n-k-1; i++) cout << a[i] << " ";
  11. //for(int i=1; i<=k+1; i++) cout << k << " ";
  12. cout << endl;
  13. }
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5288KB
stdin
3
6 2
5 4
5 0
stdout
6 5 4 

5 4 3 2