Trying to rewrite the following in C++

Code:
FILE *fout;

fprintf(fout, "%-9s%-11s", make_temp, model_temp);
known that FILE *fout will be ofstream....

i.e.
Code:
ofstream fout;

fout << ???????
currently looking at setw