#include using namespace std; using lint = long long; const lint inf = 1LL << 60; const lint mod = 1000000007; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); double n, k; cin >> n >> k; cout << fixed << setprecision(10) << n / 2 << "\n"; return 0; }