// No.192 合成数 // https://yukicoder.me/problems/no/192 // #include using namespace std; int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); int N; cin >> N; if (N % 2 == 0) cout << N << endl; else cout << N + 1 << endl; }