setw sets the "width" of the next output. It is useful when you want things to line up, like a table.
The string has 16 characters which is less than 10 so setw doesn't make a difference in your code. If you want 10 spaces in front of the string you have to pass a value of 26 (number of spaces + length of string) to setw.