#include #include #include using namespace std; int main(int argc, char **argv) { int i = 10; cout << hex << showbase << setfill('0') << setw(10) << i << "\n" << internal << setw(10) << i << "\n"; return EXIT_SUCCESS; }