Problem10535--ABC117 —— A - Entrance Examination

10535: ABC117 —— A - Entrance Examination

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB  Special Judge

Description

In order to pass the entrance examination tomorrow, Taro has to study for $T$ more hours.

Fortunately, he can leap to World B where time passes $X$ times as fast as it does in our world (World A).

While $(X \times t)$ hours pass in World B, $t$ hours pass in World A.

How many hours will pass in World A while Taro studies for $T$ hours in World B?

Input

Input is given from Standard Input in the following format:

```
$T$ $X$
```

Output

Print the number of hours that will pass in World A.

The output will be regarded as correct when its absolute or relative error from the judge's output is at most $10^{-3}$.

Constraints

-   All values in input are integers.
-   $1 \leq T \leq 100$
-   $1 \leq X \leq 100$

Sample 1 Input

8 3

Sample 1 Output

2.6666666667
While Taro studies for eight hours in World B where time passes three times as fast, 2.6666... hours will pass in World A.
Note that an absolute or relative error of at most $10^{−3}$ is allowed.

Sample 2 Input

99 1

Sample 2 Output

99.0000000000

Sample 3 Input

1 100

Sample 3 Output

0.0100000000

Source/Category