1.22. Exercise: Fuel Tank 4

Write a program that calculates how many times a truck needs to refill its tank to complete a trip of a given length and the remaining liters of fuel in the truck’s tank at the end of the trip.

The capacity of the truck’s fuel tank and its fuel consumption per 100 kilometers will be given as input followed by the length of the trip. For the output you need to print the number of times to refill and the remaining liters of fuel respectively. Note that you should print two decimal places for the remaining liters of fuel.

You can assume that initially the tank is full. Also, the truck refills its tank when it is completely empty. The only exception is it will not refill the empty tank if the trip is completed (see the 3rd example in the sample i/o).

Hint: You can use the \(\color{purple}{\texttt{ceil()}}\) function from the \(\color{purple}{\texttt{math}}\) library.

Sample I/O:

Input:
150
30
1100

Output:
2
120.00

Input:
300
27
1234

Output:
1
266.82

Input:
150
30
1000

Output:
1
0.00