#include using namespace std;int main(){ int n = 3; int r = 0; while (r++ < n) { int c = 0; while (c++ < r) { cout << "*"; } cout << endl; }}