A - ReLU
Editorial
/


Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 100 点
制約
- x は整数
- -10 \leq x \leq 10
入力
入力は以下の形式で標準入力から与えられる。
x
出力
答えを整数で出力せよ。
入力例 1
1
出力例 1
1
1 \geq 0 なので ReLU(1) = 1 です。
入力例 2
0
出力例 2
0
入力例 3
-1
出力例 3
0
Score : 100 points
Constraints
- x is an integer.
- -10 \leq x \leq 10
Input
Input is given from Standard Input in the following format:
x
Output
Print the answer as an integer.
Sample Input 1
1
Sample Output 1
1
We have 1 \geq 0, so ReLU(1) = 1.
Sample Input 2
0
Sample Output 2
0
Sample Input 3
-1
Sample Output 3
0