/*
        Draws two lines which divides the window 
        into four quadrants. First draws a horizontal
        line and then the vertical line 
        */
        line(0, 50, 100, 50);
        line(50, 0, 50, 100);