Advertisement
Promi_38

cf 1438A

Sep 30th, 2021
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include<bits\stdc++.h>  
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int t;
  8.     scanf("%d", &t);
  9.    
  10.     while(t--)
  11.     {
  12.         int n;
  13.         scanf("%d", &n);
  14.        
  15.         while(n--) printf("1 ");
  16.         printf("\n");
  17.     }
  18.    
  19. }
  20.  
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement