b = int(input("Amount of litres: "))
k = int(input("Amount of km's: "))
print("Precise cost for 1 litre: " + str(k / b))
print("Rounded cost for 1 litre: " + str(k // b))
b = int(input("Amount of litres: "))
k = int(input("Amount of km's: "))
print("Precise cost for 1 litre: " + str(k / b))
print("Rounded cost for 1 litre: " + str(k // b))