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