#include <iostream.h>
#include <iomanip.h>
#include <stdio.h>
main ( ) {
printf ("%6s%8i\n", "box", 4703);
cout << setw (6) << "box" << setw (8) << 4703 << endl;
}
