{"raw_statement":[{"iden":"problem statement","content":"Given eight integers $S_1,S_2,\\dots$, and $S_8$, print `Yes` if they satisfy all of the following three conditions, and `No` otherwise.\n\n*   The sequence $(S_1,S_2,\\dots,S_8)$ is monotonically non-decreasing. In other words, $S_1 \\leq S_2 \\leq \\dots \\leq S_8$.\n*   $S_1,S_2,\\dots$, and $S_8$ are all between $100$ and $675$, inclusive.\n*   $S_1,S_2,\\dots$, and $S_8$ are all multiples of $25$."},{"iden":"constraints","content":"*   $0\\leq S_i \\leq 1000$\n*   All input values are integers."},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$S_1$ $S_2$ $\\dots$ $S_8$"},{"iden":"sample input 1","content":"125 175 250 300 400 525 600 650"},{"iden":"sample output 1","content":"Yes\n\nThey satisfy all of the three conditions."},{"iden":"sample input 2","content":"100 250 300 400 325 575 625 675"},{"iden":"sample output 2","content":"No\n\nThey violate the first condition because $S_4 > S_5$."},{"iden":"sample input 3","content":"0 23 24 145 301 413 631 632"},{"iden":"sample output 3","content":"No\n\nThey violate the second and third conditions."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}