100 #ABC170A. [ABC170A] Five Variables

[ABC170A] Five Variables

Score : 100100 points

Problem Statement

We have five variables x1,x2,x3,x4,x_1, x_2, x_3, x_4, and x5x_5.

The variable xix_i was initially assigned a value of ii.

Snuke chose one of these variables and assigned it 00.

You are given the values of the five variables after this assignment.

Find out which variable Snuke assigned 00.

Constraints

  • The values of x1,x2,x3,x4,x_1, x_2, x_3, x_4, and x5x_5 given as input are a possible outcome of the assignment by Snuke.

Input

Input is given from Standard Input in the following format:

x1x_1 x2x_2 x3x_3 x4x_4 x5x_5

Output

If the variable Snuke assigned 00 was xix_i, print the integer ii.

0 2 3 4 5
1

In this case, Snuke assigned 00 to x1x_1, so we should print 11.

1 2 0 4 5
3