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