Fuel

Convert fuel consumption from miles per gallon to liters per 100 kilometers using the given conversion constants.

Easy2MathImplementationNo attempts yetTime limit1sMemory limit512 MB

Problem

Mirko recently traveled to the United States and rented a modern American convertible, orange with white stripes, with an automatic transmission, navigation, and a dashboard in English that uses imperial units. What bothers him most is that fuel consumption is shown in miles per gallon, so he cannot tell how much gasoline the car actually burns.

Write a program that converts fuel consumption from miles per gallon into liters per 100 kilometers.

One gallon is exactly 3.7854117843.785411784 liters, and one mile is exactly 1609.3441609.344 meters.

Input

The first and only line contains a decimal number xx with two decimal places, the number of miles Mirko's car travels on one gallon. It holds that 1x10001 \le x \le 1000.

Output

Print, on one line, how many liters the car uses per 100 kilometers. Round the value at the seventh decimal place and always print exactly six digits after the decimal point.