#include using namespace std; int main() { double n, k; cin >> n >> k; cout << fixed << setprecision(20) << n/2 << endl; return 0; }