diff --git a/AreaTriangle b/AreaTriangle index 0b080d6..91ddfeb 100644 --- a/AreaTriangle +++ b/AreaTriangle @@ -1,6 +1,6 @@ -a = float(input('Enter first side: ')) -b = float(input('Enter second side: ')) -c = float(input('Enter third side: ')) +a = float(input('Enter first side1: ')) +b = float(input('Enter second side2: ')) +c = float(input('Enter third side3: ')) # calculate the semi-perimeter s = (a + b + c) / 2