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