// setw example #include <iostream> #include <iomanip> int main () { cout<<setw(10); cout << 77 << endl; return 0; }