#include using namespace std; int main (){ float N; cin >> N; N += 0.0001 * N; cout << "decimal\n" << N << endl; return 0; }