#include using namespace std; //Bai 9 int main() { int n; cout << "Enter n: "; cin >> n; for (int i = n; i >= 1; i--) { int temp = i; while (temp) { cout << "*"; temp--; } cout << '\n'; } }