现在有五个人他们很无聊,然后他们在玩硬币(⊙o⊙)…
他们每一个人都有一个初始的硬币数量b(b>0)。
玩硬币的时候还有一个规则,他们会互相打赌,如果一方输了会把自己拥有的一个硬币给另一方,
经过若干次打赌,告诉你最后五个人拥有的硬币的数量
让你判断是否有一个初始条件b,使得这个结果的是合法的,如果合法则输出b,不合法输出-1.
单组数据。
每次输入c1,c2,c3,c4,c5(0 ≤ c1, c2, c3, c4, c5 ≤ 100).,代表第一个人,第二个人,第三个人,第四个人,第五个人最后的硬币数量
输出只有一行
他们的初始硬币数量b,如果合法就输出b,不合法输出-1
2 5 4 0 4
3
4 5 9 2 1
-1
NoteIn the first sample the following sequence of operations is possible:
- One coin is passed from the fourth player to the second player; 第四个人给了第二个人一个硬币
- One coin is passed from the fourth player to the fifth player;第四个人给了第五个人一个硬币
- One coin is passed from the first player to the third player;第一个人给了第三个人一个硬币
- One coin is passed from the fourth player to the second player.第四个人给了第二个人一个硬币