atcoder#ABC289A. [ABC289A] flip

[ABC289A] flip

Score : 100100 points

Problem Statement

You are given a string ss consisting of two kinds of characters, 0 and 1. Print the string obtained by replacing 0 with 1 and 1 with 0 in ss.

Constraints

  • The length of ss is between 11 and 1010, inclusive.
  • ss consists of two kinds of characters, 0 and 1.

Input

The input is given from Standard Input in the following format:

ss

Output

Print the answer in a single line.

01
10

The 11-st character of ss is 1, so the 11-st character to print is 0. The 22-nd character of ss is 0, so the 22-nd character to print is 1.

1011
0100
100100001
011011110