#include using namespace std; int main() { int64_t d; scanf("%ld", &d); d *= 108; printf("%ld.%02ld", d / 100, d % 100); return 0; }