#include using namespace std; auto is_odd(auto x){ return x % 2; } int main(){ int x; cin >> x; if(is_odd(x)) cout << "x is an odd number\n"; }