1390E.cpp 235 B

12345678910111213
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main() {
  4. int n;
  5. cin >> n;
  6. for (int i = 1; i <= n; i++) {
  7. for (int j = 1; j <= i; j++) {
  8. cout << "*";
  9. }
  10. cout << endl;
  11. }
  12. return 0;
  13. }