Cheapest Flour |2| ~~~~~~~~~~~~~~~~~~ Your friend Ozan is a great cook and wants to buy some flour in a market to make some cookies. In this market, all brands of flour is marked with prices **P** per **W** kilograms instead of 1 kilogram. He does not want to be overcharged, so you should help him. Can you order all these brands with their prices per kg in decreasing order? Write a function named *cheapest_flour* which gets two *string*\ s as input and output file names. In the input file, each line stands for a brand and includes two *integers*, **P** and **W** separated by a space where **P** is the price of the **W** kilograms of this brand. The function must write the price per kg of each brand in the decreasing order to the output file. .. container:: sampleio Sample I/O: .. |2| image:: ../../figures/difficulty_three.png :class: difficulty .. code:: default Sample function call: cheapest_flour("input.txt", "output.txt") Content of the file "input.txt": 12 3 25 2 15 6 23 8 11 2 Content of the file "output.txt" after function call: 12.5 5.5 4.0 2.875 2.5 .. raw:: html .. raw:: html