{"raw_statement":[{"iden":"problem statement","content":"We have a truck, which can carry at most $N$ kilograms.\nWe will load bricks onto this truck, each of which weighs $W$ kilograms. At most how many bricks can be loaded?"},{"iden":"constraints","content":"*   $1\\leq N,W \\leq 1000$\n*   $N$ and $W$ are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$ $W$"},{"iden":"sample input 1","content":"10 3"},{"iden":"sample output 1","content":"3\n\nEach brick weighs $3$ kilograms, so $3$ bricks weigh $9$ kilograms, and $4$ weigh $12$ kilograms.\nThus, we can load at most $3$ bricks onto the truck that can carry at most $10$ kilograms."},{"iden":"sample input 2","content":"1000 1"},{"iden":"sample output 2","content":"1000"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}