Problem1277--Parity check

1277: Parity check

[Creator : ]
Time Limit : 1 sec  Memory Limit : 128 MB

Description

Fascinated with the computer games, Gabriel even forgets to study. Now she needs to finish her homework, and there is an easy problem:

She is required to calculate f(n) mod 2 for each given n. Can you help her?

Input

Multiple test cases. Each test case is an integer n(0≤n≤101000) in a single line.

Output

For each test case, output the answer of f(n)mod2.

Sample Input Copy

2

Sample Output Copy

1

Source/Category