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