x,y,d = map(int,input().split()) a = 0 if d == x: a +=1 if d == y: a +=1 if (x**2+y**2) == d**2: a +=1 print(a)