Run id: 135450
Main.cc: In function 'int main()':
Main.cc:6:4: error: 'cin' was not declared in this scope
cin >> x >> a >> b >> c >> d;
^
Main.cc:10:4: error: 'cout' was not declared in this scope
cout << fixed << setprecision(5) << result << endl;
^
Main.cc:10:12: error: 'fixed' was not declared in this scope
cout << fixed << setprecision(5) << result << endl;
^
Main.cc:10:35: error: 'setprecision' was not declared in this scope
cout << fixed << setprecision(5) << result << endl;
^
Main.cc:10:50: error: 'endl' was not declared in this scope
cout << fixed << setprecision(5) << result << endl;
^
Main.cc:12:12: error: expected '}' at end of input
return 0;
^