xxxxxxxxxx
// C++ double is a versatile data type that is used internally for the compiler
// to define and hold any numerically valued data type especially any decimal
// oriented value. C++ double data type can be either fractional as well as whole
// numbers with values.
double var;
cin >> var;
cout<< var;