Lucian_Adrian

Untitled

Sep 7th, 2021
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int N, I, X;
  8. cin>>N;
  9. for(I=1;I<=N;++I){
  10. for(X=1;X<=I;++X)
  11. cout << X << ' ';
  12. cout<<endl;
  13. }
  14. return 0;
  15. }
  16.  
  17.  
Advertisement
Add Comment
Please, Sign In to add comment