#abc183a. [abc183_a]ReLU
[abc183_a]ReLU
Problem Statement
The function ReLU is defined as follows:[](ReLU(x) =
\begin{cases}
x & (x \geqq 0)
0 & (x < 0)
\end{cases})
Given an integer , find .
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the answer as an integer.
Sample Input 1
1
Sample Output 1
1
We have , so .
Sample Input 2
0
Sample Output 2
0
Sample Input 3
-1
Sample Output 3
0