#include #include using namespace std; int main() { string word = "hello world"; for(int i = 1; i < 20; ++i) { cout << setw(3) << i << "," << setw(i) << word << endl; } return 0; }