URI Online Judge | 1017 Fuel Spent Solve with source code

URI Online Judge | 1017
Fuel Spent
Adapted by Neilor Tonin, URI  Brazil

Timelimit: 1
Little John wants to calculate and show the amount of spent fuel liters on a trip, using a car that does 12 Km/L. For this, he would like you to help him through a simple program. To perform the calculation, you have to read spent time (in hours) and the same average speed (km/h). In this way, you can get distance and then, calculate how many liters would be needed. Show the value with three decimal places after the point.

Input
The input file contains two integers. The first one is the spent time in the trip (in hours). The second one is the average speed during the trip (in Km/h).

Output
Print how many liters would be needed to do this trip, with three digits after the decimal point.



SOLVE
                             A = int(input())
                            B = int(input())
                            Fuel_Spent = (A*B)/12
                            print("%.3f"%Fuel_Spent)

Comments

Popular posts from this blog

How to solve an 8 puzzle problem using A* Algorithm in python

Timus Online Judge 1000. A+B Problem question and SOLVE with sudo code

URI Online Judge | 1013 The Greatest Solve with source code