Problem10773--ABC142 - A - Odds of Oddness

10773: ABC142 - A - Odds of Oddness

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

Description

Given is an integer $N$.

Takahashi chooses an integer $a$ from the positive integers not greater than $N$ with equal probability.

Find the probability that $a$ is odd.

Input

Input is given from Standard Input in the following format:

```
$N$
```

Output

Print the probability that $a$ is odd. Your output will be considered correct when its absolute or relative error from the judge's output is at most $10^{-6}$.

Constraints

-   $1 \leq N \leq 100$

Sample 1 Input

4

Sample 1 Output

0.5000000000

There are four positive integers not greater than $4$: $1$, $2$, $3$, and $4$. Among them, we have two odd numbers: $1$ and $3$. Thus, the answer is $\frac{2}{4} = 0.5$.

Sample 2 Input

5

Sample 2 Output

0.6000000000

Sample 3 Input

1

Sample 3 Output

1.0000000000

Source/Category