#include <iostream>
using namespace std;

int main() {
	// your code goes here
	long double num = 5871.9854015241057;
	cout.precision(2);
	cout << "Scientific (default): " << num << endl;
	cout.setf(ios_base::fixed);
	cout << "Fixed: " << num << endl;
	return 0;
}