Problem9665--ABC183 —— A - ReLU

9665: ABC183 —— A - ReLU

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

Description

The function ReLU is defined as follows:
$ReLU(x) =
        \begin{cases}
            x & (x \geqq 0) \\
            0 & (x < 0) \
        \end{cases}$
Given an integer $x$, find $ReLU(x)$.

Input

Input is given from Standard Input in the following format:

```
$x$
```

Output

Print the answer as an integer.

Constraints

-   $x$ is an integer.
-   $ -10 \leq x \leq 10$

Sample 1 Input

1

Sample 1 Output

1
We have 1≥0, so ReLU(1)=1.

Sample 2 Input

0

Sample 2 Output

0

Sample 3 Input

-1

Sample 3 Output

0

Source/Category