#include <stdio.h>
int main(){
int a=2;
int b=3;
int c;
c=a+b;
while(c>=-a*b){
printf("%d\n",c);
c--;
if (c<-1){
printf("it is a negative integer\n");
}
else{
if (c=0){
printf("it is neither negative nor positive integer\n");
}
else{
printf("it is a positive integer\n");
}
}
}
}