-
Three integers are given on separate lines. Determine how many of them are equal.
Output one of the following: 3 (if all numbers are equal), 2 (if two are equal), or 0 (if all numbers are different).
[{'input': '1\n2\n2', 'output': '2'}]