编辑代码

#include<stdio.h>
void main()
{   int x;
    printf(":");
    scanf("%d",&x);
    if(x%2==0)
        printf("%d\n",x);
        else
            printf("%d\n",x);
}