#include using namespace std; using ll = long long; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); ll n, K; cin >> n >> K; cout << n / 2.0 << endl; return 0; }