#include using namespace std; int main(){ int n; cout<<"Enter a number "<>n; n%2==0 ? cout<<"Even" : cout<<"Odd"; return 0; }