#AT1649. A - Not

A - Not

A - Not

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:

xx

Output

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


1
0

0
1