Problem9641--ABC178 —— A - Not

9641: ABC178 —— A - Not

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

Description

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$.

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$.

Constraints

-   $0 \leq x \leq 1$
-   $x$ is an integer

Sample 1 Input

1

Sample 1 Output

0

Sample 2 Input

0

Sample 2 Output

1

Source/Category