#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin >> N; cout << fixed << setprecision(10) << static_cast(10000 - N) / (10000 + 98 * N) * 100 << '\n'; return 0; }