#12190: C++ 簡易參考解答


shawn2000100 (東華財金)


#include<iostream>
using namespace std;

int main() {
int n;
while ( cin >> n ) {
cout << ( n % 2 ? n - 1 : n ) << endl;
}
}