{"raw_statement":[{"iden":"statement","content":"The Model\n\nYou are making a model airplane, which will be powered by rubber bands. Luckily, to speed up the process of winding the rubber bands, you have a crank winder, which has a certain ratio (e.g. 15:1), representing how many winds of the rubber band one turn of the winder will result in. Given this value, and how many winds you ultimately want the airplane's rubber band to have, figure out how many times you need to turn the winder.\n\nThe first line of input contains a single positive integer $n$, representing the number of winds you want the plane to have. The second line of input contains a single positive integer $m$, representing how many winds of the rubber band one turn of the winder corresponds to.\n\nOutput a single positive integer $w$: how many times you need to spin the winder. This value is guaranteed to be an integer.\n\nFor the first example, $150. 0$ would also be judged as a correct answer.\n\n"},{"iden":"input","content":"The first line of input contains a single positive integer $n$, representing the number of winds you want the plane to have. The second line of input contains a single positive integer $m$, representing how many winds of the rubber band one turn of the winder corresponds to."},{"iden":"output","content":"Output a single positive integer $w$: how many times you need to spin the winder. This value is guaranteed to be an integer."},{"iden":"examples","content":"Input2250\n15\nOutput150\nInput64\n4\nOutput16\n"},{"iden":"note","content":"For the first example, $150. 0$ would also be judged as a correct answer."}],"translated_statement":null,"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ n \\in \\mathbb{Z}^+ $ be the desired number of winds on the rubber band.  \nLet $ m \\in \\mathbb{Z}^+ $ be the winding ratio (winds per turn of the crank).  \n\n**Constraints**  \n$ n \\geq 1 $, $ m \\geq 1 $, and $ \\frac{n}{m} \\in \\mathbb{Z}^+ $.\n\n**Objective**  \nCompute the number of crank turns $ w $:  \n$$ w = \\frac{n}{m} $$","simple_statement":"You need to wind a rubber band n times.  \nEach turn of the winder winds the band m times.  \nHow many turns of the winder do you need?","has_page_source":false}