Problem6850--逻辑运算 —— 3. 非逻辑

6850: 逻辑运算 —— 3. 非逻辑

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

Description

输入一个逻辑状态,请输出对应的非逻辑。

Input

一行一个整数 $a$,$0$ 表示假,$1$ 表示真。

Output

一行一个整数。$0$ 表示假,$1$ 表示真。

Sample 1 Input

0

Sample 1 Output

1

Sample 2 Input

1

Sample 2 Output

0

Source/Category