#9877. Five Variables
Five Variables
题目描述
We have five variables and .
The variable was initially assigned a value of .
Snuke chose one of these variables and assigned it .
You are given the values of the five variables after this assignment.
Find out which variable Snuke assigned .
我们有五个变量 和 。
变量 的初始赋值为 。
Snuke 从这些变量中选择了一个,并分配给它 。
赋值后,你将得到五个变量的值。
请找出 Snuke 为哪个变量赋值 。
输入格式
输入内容按以下格式标准输入:
输出格式
如果分配给 Snuke 的变量 是 ,则打印整数 。
样例 #1
样例输入 #1
0 2 3 4 5
样例输出 #1
1
样例 #2
样例输入 #2
1 2 0 4 5
样例输出 #2
3
说明
数据规模与约定
- 输入值 和 是 Snuke 赋值的可能结果。
样例 解释
在这种情况下,Snuke 将 分配给了 ,因此我们应该打印 。