#include<studio.h>
int main()
{
    int x=10;
    if(x=0)
        printf("Zero");
    else
        printf("Non zero");
    return 0;
}