#include <stdio.h>

void main()

{

    int x;

    printf("Enter The Number : ");

    scanf("%d",&x);

    if(x>0)

    {

        printf("\n%d is Positive Integer ",x);            

    }

    if(x<0)

    {

        printf("\n%d is Negative Integer ",x);            

    }

}