#include using namespace std; int main() { double N, K; cin >> N >> K; cout << fixed << setprecision(10); cout << N / 2.0 << endl; return 0; }