101081: [AtCoder]ABC108 B - Ruined Square

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $200$ points

Problem Statement

There is a square in the $xy$-plane. The coordinates of its four vertices are $(x_1,y_1),(x_2,y_2),(x_3,y_3)$ and $(x_4,y_4)$ in counter-clockwise order. (Assume that the positive $x$-axis points right, and the positive $y$-axis points up.)

Takahashi remembers $(x_1,y_1)$ and $(x_2,y_2)$, but he has forgot $(x_3,y_3)$ and $(x_4,y_4)$.

Given $x_1,x_2,y_1,y_2$, restore $x_3,y_3,x_4,y_4$. It can be shown that $x_3,y_3,x_4$ and $y_4$ uniquely exist and have integer values.

Constraints

  • $|x_1|,|y_1|,|x_2|,|y_2| \leq 100$
  • $(x_1,y_1)$ ≠ $(x_2,y_2)$
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

$x_1$ $y_1$ $x_2$ $y_2$

Output

Print $x_3,y_3,x_4$ and $y_4$ as integers, in this order.


Sample Input 1

0 0 0 1

Sample Output 1

-1 1 -1 0

$(0,0),(0,1),(-1,1),(-1,0)$ is the four vertices of a square in counter-clockwise order. Note that $(x_3,y_3)=(1,1),(x_4,y_4)=(1,0)$ is not accepted, as the vertices are in clockwise order.


Sample Input 2

2 3 6 6

Sample Output 2

3 10 -1 7

Sample Input 3

31 -41 -59 26

Sample Output 3

-126 -64 -36 -131

Input

题意翻译

平面直角坐标系上( $x$ 轴正方向朝右, $y$ 轴正方向朝上)有一个正方形, $4$ 个顶点的坐标按逆时针排序依次为 $(x_1,y_1),(x_2,y_2),(x_3,y_3),(x_4,y_4)$ 。现在只给出了 $(x_1,y_1)$ 和 $(x_2,y_2)$ ,请求出 $(x_3,y_3)$ 和 $(x_4,y_4)$ 。保证答案唯一存在且均为整数。

加入题单

算法标签: