# include <stdio.h>
# include <math.h>
int main(){
int x;
scanf("%d", &x);
if (x % 2 == 0){
printf("even");
}
else{
printf("odd");
}
return 0;
}
1018: 奇数偶数
最新推荐文章于 2024-11-02 15:25:13 发布