A - Not 解説 /

実行時間制限: 2 sec / メモリ制限: 1024 MB

配点 : 100

問題文

0 以上 1 以下の整数 x が与えられます。 x0 なら 1 を、1 なら 0 を出力してください。

制約

  • 0 \leq x \leq 1
  • x は整数

入力

入力は以下の形式で標準入力から与えられる。

x

出力

x0 なら 1 を、1 なら 0 を出力してください。


入力例 1

1

出力例 1

0

入力例 2

0

出力例 2

1

Score : 100 points

Problem Statement

Given is an integer x that is greater than or equal to 0, and less than or equal to 1. Output 1 if x is equal to 0, or 0 if x is equal to 1.

Constraints

  • 0 \leq x \leq 1
  • x is an integer

Input

Input is given from Standard Input in the following format:

x

Output

Print 1 if x is equal to 0, or 0 if x is equal to 1.


Sample Input 1

1

Sample Output 1

0

Sample Input 2

0

Sample Output 2

1