Given a 1 dimensional point of a rectangel and its area, find permutations of all the other 3 points of the rectangle in 2-D space.
Ex: - Given X = (0,0) and A=1
(0,1), (1,0), (1,1)
(0,-1), (-1,0), (-1,-1)


Answer :