Question 1190802
.
Activity No. 1: Multicab Ride!
Going to a far barangay in Gingoog City means riding a multicab. 
The standard fare in riding a multicab is Php 9 for the first 5 km as a flag down rate 
plus Php 1 peso for every 1 kilometer {{{highlight(after_that)}}}. How much is Nathan going to pay if he goes to Medina?
Complete the table:
5 km - Lunao 8 km - agay 11 km - Minlagas 13 km - San Luis 18 km - Medina 23 k
~~~~~~~~~~~~~~~~~~


<pre>

Use the formula

    fare = 9 + (d-5),


where d is the distance in kilometers, assuming that d >= 5 kilometers 
(which is true for all cells in the Table).


So, for example, for Lunao  fare = 9 + (8-5) = 9 + 3 = 12 Php.


Based on this instruction, complete the rest of the Table on your own.
</pre>

Happy calculations (!)