Whats wrong in this code?

a,b,c=map(int,input().split())# cook your dish here
if (a+b>=c) and (b+c>=a) and (c+a>=b):
if (a == b == c):
print(“1”)
elif (a == b) or (b==c) or (c==a):
print(“2”)
else:
print(“3”)
else:
print("-1")

replaceif(a==b==c) with if(a==b and a == c) and i can’t say more because i don’t know which question you are trying to solve so we can get to know if your approch is wrong

Two else conditional blocks for one if.

may be one for if and one for elif :no_mouth: