#include <iostream>
#include <iomanip>
using namespace std ;
main ()
{
int a=8, b=15 ;
cout <<setw(10) <<a <<setw(10) <<b <<endl ;
cout <<a <<setw(10) <<b <<endl ;
cout <<setw(10) <<a <<b <<endl ;
}
#include <iostream>
#include <iomanip>
using namespace std ;
main ()
{
const double pi=3.1415 ;
cout <<setprecision(1) <<setw(10) <<pi <<endl ;
cout <<setprecision(2) <<setw(10) <<pi <<endl ;
cout <<setprecision(3) <<setw(10) <<pi <<endl ;
cout <<setprecision(4) <<setw(10) <<pi <<endl ;
cout <<setprecision(5) <<setw(10) <<pi <<endl ;
}
#include <iostream>
#include <iomanip>
using namespace std ;
main ()
{
int a=8, b=15 ;
cout <<setw(10) <<hex <<a <<setw(10) <<b <<endl ;
cout <<setw(10) <<oct <<a <<setw(10) <<b <<endl ;
cout <<setw(10) <<dec <<a <<setw(10) <<b <<endl ;
}
#include <iostream>
#include <iomanip>
using namespace std ;
main ()
{
int a ;
cin >>oct >>a ;
cout <<dec <<a <<endl ;
cout <<oct <<a <<endl ;
cout <<hex <<a <<endl ;
}