#include <iostream>
using namespace std;
int main()
{
int x(10);
cout << oct << x << endl;
cout << dec << x << endl;
cout << hex << x << endl;
system("pause");
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int x(10);
cout << oct << x << endl;
cout << dec << x << endl;
cout << hex << x << endl;
system("pause");
return 0;
}