#include using namespace std; int main() { for (int i = 10; i >= 1; i--) { for (int j = 0; j < i; j++) { cout << "*"; } cout << '\n'; } return 0; }