{"raw_statement":[{"iden":"problem statement","content":"Takahashi and Aoki are training for long-distance races in an infinitely long straight course running from west to east.\nThey start simultaneously at the same point and moves as follows **towards the east**:\n\n*   Takahashi runs $A_1$ meters per minute for the first $T_1$ minutes, then runs at $A_2$ meters per minute for the subsequent $T_2$ minutes, and alternates between these two modes forever.\n*   Aoki runs $B_1$ meters per minute for the first $T_1$ minutes, then runs at $B_2$ meters per minute for the subsequent $T_2$ minutes, and alternates between these two modes forever.\n\nHow many times will Takahashi and Aoki meet each other, that is, come to the same point? We do not count the start of the run. If they meet infinitely many times, report that fact."},{"iden":"constraints","content":"*   $1 \\leq T_i \\leq 100000$\n*   $1 \\leq A_i \\leq 10^{10}$\n*   $1 \\leq B_i \\leq 10^{10}$\n*   $A_1 \\neq B_1$\n*   $A_2 \\neq B_2$\n*   All values in input are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$T_1$ $T_2$\n$A_1$ $A_2$\n$B_1$ $B_2$"},{"iden":"sample input 1","content":"1 2\n10 10\n12 4"},{"iden":"sample output 1","content":"1\n\nThey will meet just once, $\\frac{4}{3}$ minutes after they start, at $\\frac{40}{3}$ meters from where they start."},{"iden":"sample input 2","content":"100 1\n101 101\n102 1"},{"iden":"sample output 2","content":"infinity\n\nThey will meet $101, 202, 303, 404, 505, 606, ...$ minutes after they start, that is, they will meet infinitely many times."},{"iden":"sample input 3","content":"12000 15700\n3390000000 3810000000\n5550000000 2130000000"},{"iden":"sample output 3","content":"113\n\nThe values in input may not fit into a $32$\\-bit integer type."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}