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