#C1043. Minecraft Fish Count

    ID: 39634 Type: Default 1000ms 256MiB

Minecraft Fish Count

Minecraft Fish Count

Steve loves fishing in Minecraft! In each Minecraft day, which lasts 1200 seconds, Steve can catch fish at two different speeds. The minimum number of fish caught is obtained when each fish takes 30 seconds, while the maximum is obtained when each fish takes 15 seconds. Using the formulas below, calculate the minimum and maximum number of fish Steve can catch in the given number of Minecraft days:

$$minFish = \frac{1200}{30} \times days = 40 \times days $$$$maxFish = \frac{1200}{15} \times days = 80 \times days $$

Note: The input may be a floating point number. Multiply directly without rounding the multiplier (e.g. for 1.5 days, the results are 60 and 120 respectively).

inputFormat

The input consists of a single line containing one number (which can be an integer or a floating-point number) representing the number of Minecraft days.

outputFormat

Output two integers separated by a space: the minimum and maximum number of fish that Steve can catch in the given number of days.## sample

1
40 80

</p>