#include using namespace std; int main(void) { double eps = 0.0001, n; cin >> n; cout << "decimal" << endl; cout << n + eps << endl; return 0; }