{"raw_statement":[{"iden":"problem statement","content":"Consider a two-dimensional coordinate plane, where the $x$\\-axis is oriented to the right, and the $y$\\-axis is oriented upward.\nIn this plane, there is a quadrilateral without self-intersection.  \nThe coordinates of the four vertices are $(A_x,A_y)$, $(B_x,B_y)$, $(C_x,C_y)$, and $(D_x,D_y)$, in counter-clockwise order.\nDetermine whether this quadrilateral is convex.\nHere, a quadrilateral is convex if and only if all four interior angles are less than $180$ degrees."},{"iden":"constraints","content":"*   $-100 \\leq A_x,A_y,B_x,B_y,C_x,C_y,D_x,D_y \\leq 100$\n*   All values in input are integers.\n*   The given four points are the four vertices of a quadrilateral in counter-clockwise order.\n*   The quadrilateral formed by the given four points has no self-intersection and is non-degenerate. That is,\n    *   no two vertices are at the same coordinates;\n    *   no three vertices are colinear; and\n    *   no two edges that are not adjacent have a common point."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$A_x$ $A_y$\n$B_x$ $B_y$\n$C_x$ $C_y$\n$D_x$ $D_y$"},{"iden":"sample input 1","content":"0 0\n1 0\n1 1\n0 1"},{"iden":"sample output 1","content":"Yes\n\nThe given quadrilateral is a square, whose four interior angles are all $90$ degrees. Thus, this quadrilateral is convex.\n![image](https://img.atcoder.jp/abc266/cda66d9b9f4291781d1ce47f59f29ab0.png)"},{"iden":"sample input 2","content":"0 0\n1 1\n-1 0\n1 -1"},{"iden":"sample output 2","content":"No\n\nThe angle $A$ is $270$ degrees. Thus, this quadrilateral is not convex.\n![image](https://img.atcoder.jp/abc266/2927f9f67e2cb7c35aeab05269b6fcc2.png)"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}