#include using namespace std; int main() { float a = 1e+30; float b = 1.0/1e+30; float c = 1e+30; float x1 = a * b * c; float x2 = a * c * b; cout << a << " " << b << " " << c << " "; cout << x1 << " " << x2 << endl; }