2 lines
118 B
Python
2 lines
118 B
Python
temp = list(map(float, iter(input, "999")))
|
|
print("\n".join([f"{temp[i+1]-temp[i]:.2f}" for i in range(len(temp)-1)])) |