Decide quadrant

Share it Please
#include<stdio.h>
#include<conio.h>
main()
{
        int x,y;
        clrscr();
        printf("Enter x component: ");
        scanf("%d",&x);
        printf("\nEnter y component: ");
        scanf("%d",&y);
        if(x>0&&y>0)
        {
                printf("\n(%d,%d) is in first quadrant",x,y);
        }
        else if(x<0&&y>0)
        {
                printf("\n(%d,%d) is in second quadrant",x,y);
        }
        else if(x<0&&y<0)
        {
                printf("\n(%d,%d) is in third quadrant",x,y);
        }
        else if(x>0&&y<0)
        {
                printf("\n(%d,%d) is in fourth quadrant",x,y);
        }
        else
        {
                printf("\n(%d,%d) is origin",x,y);
        }
        getch();
}