410355: GYM104012 A Absolutely Flat
Description
Alice is a proud owner of a four-legged table, and she wants her table to be flat. Alice considers the table to be flat if its four legs have equal lengths.
Alice measured the table's current leg lengths and got $$$a_1, a_2, a_3$$$, and $$$a_4$$$. She also has a pad of length $$$b$$$. Alice can attach the pad to one of the legs, in which case the length of that leg will increase by $$$b$$$. She can also decide not to attach the pad, in which case the lengths of the legs will not change. Note that Alice has just a single pad, so she can neither apply it twice to the same leg nor apply it to two different legs.
Find out whether Alice can make her table flat.
InputThe input contains five positive integers $$$a_1, a_2, a_3, a_4$$$, and $$$b$$$, each on a separate line — the lengths of the table's legs, and the length of the pad Alice has ($$$1 \le a_i, b \le 100$$$).
OutputPrint $$$1$$$ if Alice can make her table flat, and $$$0$$$ otherwise.
ExamplesInput10 10 10 10 5Output
1Input
13 13 5 13 8Output
1Input
50 42 42 50 8Output
0Input
20 40 10 30 2Output
0Note
In the first example test, the table is already flat, no pad is needed.
In the second example test, Alice can apply the pad to the third leg to make the table flat.
In the third and the fourth example tests, Alice can not make her table flat.