Create a function that takes three integer arguments (a, b, c) and returns the amount of integers which are of equal value.
(a, b, c)
equal(3, 4, 3) ➞ 2 equal(1, 1, 1) ➞ 3 equal(3, 4, 1) ➞ 0
Your function must return 0, 2 or 3.