{"raw_statement":[{"iden":"problem statement","content":"You are given $N$ integers $A_1, A_2, \\dots, A_N$. Also, define $B_i = A_i \\times A_{i+1}\\ (1 \\leq i \\leq N-1)$.\nPrint $B_1, B_2, \\dots, B_{N-1}$ in this order, separated by spaces."},{"iden":"constraints","content":"*   $2 \\leq N \\leq 100$\n*   $1 \\leq A_i \\leq 100$\n*   All input values are integers."},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$N$\n$A_1$ $A_2$ $\\dots$ $A_N$"},{"iden":"sample input 1","content":"3\n3 4 6"},{"iden":"sample output 1","content":"12 24\n\nWe have $B_1 = A_1 \\times A_2 = 12, B_2 = A_2 \\times A_3 = 24$."},{"iden":"sample input 2","content":"5\n22 75 26 45 72"},{"iden":"sample output 2","content":"1650 1950 1170 3240"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}