#144. greenTicket

greenTicket

Background

Description

You have a green lottery ticket, with ints a, b, and c on it. If the numbers are all different from each other, the result is 0. If all of the numbers are the same, the result is 20. If two of the numbers are the same, the result is 10.

Format

Input

Output

Samples

1 2 3
0
2 2 2
20
1 1 2
10

Limitation

1s, 1024KiB for each test case.