#include void solve() { int n; std::cin >> n; std::cout << n / 2 << (n % 2 == 0 ? ".0" : ".5") << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }