#include inline long nextInt(void) { long temp; std::cin >> temp; return temp; } int main() { double a; std::cin >> a; std::cout << "decimal" << std::endl; printf("%.7lf\n", a + 0.000001); return 0; }