Answer:
def findPerimeter(sideOne, sideTwo, sideThree):
perimeter = (sideOne + sideTwo + sideThree)
print(perimeter)
sideOne = int(input())
sideTwo = int(input())
sideThree = int(input())
findPerimeter(sideOne, sideTwo, sideThree)
Step-by-step explanation:
That is the code above in Python, you didn't specify which programming language so I wrote it in python. Hope this helps!!