{"raw_statement":[{"iden":"problem statement","content":"There is a rectangle in the $xy$\\-plane. Each edge of this rectangle is parallel to the $x$\\- or $y$\\-axis, and its area is not zero.\nGiven the coordinates of three of the four vertices of this rectangle, $(x_1, y_1)$, $(x_2, y_2)$, and $(x_3, y_3)$, find the coordinates of the other vertex."},{"iden":"constraints","content":"*   $-100 \\leq x_i, y_i \\leq 100$\n*   There uniquely exists a rectangle with all of $(x_1, y_1)$, $(x_2, y_2)$, $(x_3, y_3)$ as vertices, edges parallel to the $x$\\- or $y$\\-axis, and a non-zero area.\n*   All values in input are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$x_1$ $y_1$\n$x_2$ $y_2$\n$x_3$ $y_3$"},{"iden":"sample input 1","content":"\\-1 -1\n-1 2\n3 2"},{"iden":"sample output 1","content":"3 -1\n\nThe other vertex of the rectangle with vertices $(-1, -1), (-1, 2), (3, 2)$ is $(3, -1)$."},{"iden":"sample input 2","content":"\\-60 -40\n-60 -80\n-20 -80"},{"iden":"sample output 2","content":"\\-20 -40"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}