#include<bits/stdc++.h> using namespace std; int main() { int n,h; cin >> n >> h; for(int i=1;i<=h;i++){ for(int j=1;j<=h - i;j++){ cout << ' '; } for(int j=1;j<=2 * i-1;j++){ cout <<''; } cout << endl; } n = n -h; for(int i=1;i<=n;i++){ for(int j=1;j<=i;j++){ cout << ' '; } for(int j=1;j<=2(n-i+1)-1; j++){ cout <<'*'; } cout << endl; } return 0; }