#include<iostream>using namespace std;int main(){ int m;//宣告 cin>>m;//輸入 cout<<(m%2>0.5?"odd":"Even" );//用"?"、":"達成類似if的效果}