./ Write a Python function/program that accepts the lengths of three sides of a triangle as inputs. The program output should indicate whether or not the triangle is an equilateral triangle

Code

a = int(input("Enter the first side of the triangle: "))
b = int(input("Enter the second side of the triangle: "))
c = int(input("Enter the third side of the triangle: "))

if(a == b & a == c):
    print("The given triangle is an equilateral triangle.")
else:
    print("The given triangle is not an equilateral triangle.")