dec,hex and oct
#include <iostream>
using namespace std;
int main(){
int x=25;
cout<<hex<<x<<' '<<dec<<x<<' '<<oct<<x<<'\n';
return 0;
}
using namespace std;
int main(){
int x=25;
cout<<hex<<x<<' '<<dec<<x<<' '<<oct<<x<<'\n';
return 0;
}