A - Five Variables Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100100

問題文

55 つの変数 x1,x2,x3,x4,x5x_1, x_2, x_3, x_4, x_5 があります。

最初、変数 xix_i には整数 ii が代入されていました。

すぬけくんは、これらの変数の中から 11 つを選んで、その変数に 00 を代入する操作を行いました。

すぬけくんがこの操作を行ったあとの 55 つの変数の値が与えられます。

すぬけくんが 00 を代入した変数がどれであったかを答えてください。

制約

  • 入力として与えられる x1,x2,x3,x4,x5x_1, x_2, x_3, x_4, x_5 の値は、すぬけくんが操作を行ったあとのものとしてありえるものである。

入力

入力は以下の形式で標準入力から与えられる。

x1x_1 x2x_2 x3x_3 x4x_4 x5x_5

出力

すぬけくんが 00 を代入した変数が xix_i であるとき、整数 ii を出力せよ。


入力例 1Copy

Copy
0 2 3 4 5

出力例 1Copy

Copy
1

この場合、すぬけくんが 00 を代入した変数は x1x_1 なので、11 を出力します。


入力例 2Copy

Copy
1 2 0 4 5

出力例 2Copy

Copy
3

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.


Sample Input 1Copy

Copy
0 2 3 4 5

Sample Output 1Copy

Copy
1

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


Sample Input 2Copy

Copy
1 2 0 4 5

Sample Output 2Copy

Copy
3


2025-04-25 (Fri)
08:23:30 +00:00