#P115. 【例20.3】 0与1

【例20.3】 0与1

Description

In the first computer science class, the teacher explained that computers are made up of many small switches: 11 represents on, and 00 represents off. The students in the class understood that using a light switch is simply changing 11 to 00 and 00 to 11.

Input Format

Input consists of a single line containing an integer that is either 00 or 11.

Output Format

If the input is 00, output 11;
If the input is 11, output 00.

Sample

1
0