#ABC247A. [ABC247A] Move Right

[ABC247A] Move Right

Score : 100100 points

Problem Statement

There are 44 squares lined up horizontally.

You are given a string SS of length 44 consisting of 0 and 1. If the ii-th character of SS is 1, there is a person in the ii-th square from the left; if the ii-th character of SS is 0, there is no person in the ii-th square from the left.

Now, everyone will move to the next square to the right simultaneously. By this move, the person who was originally in the rightmost square will disappear.

Determine if there will be a person in each square after the move. Print the result as a string in the same format as SS. (See also Sample Input / Output for clarity.)

Constraints

  • SS is a string of length 44 consisting of 0 and 1.

Input

Input is given from Standard Input in the following format:

SS

Output

Print a string of length 44 such that the ii-th character is 1 if there will be a person in the ii-th square from the left after the move, and 0 otherwise.

1011
0101

After the move, the person who was originally in the 11-st square will move to the 22-nd square, the person in the 33-rd square to the 44-th square, and the person in the 44-th square will disappear.

0000
0000
1111
0111