#include <stdio.h>
int main()
{
int num;
scanf("%d",&num);
if(num == 0)
printf("Neither positive nor negative");
else if(num < 0)
printf("Negative");
else
printf("Positive");
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: