#include using namespace std; int main() { double N; cin >> N; cout << fixed << setprecision(16); cout << "decimal" << endl; cout << 1e9 * N << "e-09" << endl; }