Create a program to accept the 3 sides of a figure.
If all the sides are equal then print , “Figure is an EQUILATERAL TRIANGLE” else, print “Figure is not an EQUILATERAL TRIANGLE”.
Answers
Answered by
0
Answer:
Python -
a,b,c = map(int, input().split())
if a == b and b == c:
print(“Figure is an EQUILATERAL TRIANGLE”)
else:
print(“Figure is not an EQUILATERAL TRIANGLE”)
exit(0)
Like and Mark as Brainliest, it really motivates!
Similar questions