From b2fc1ce940d418600f951024953a395a710b4da1 Mon Sep 17 00:00:00 2001 From: MrDPSingh Date: Tue, 28 Oct 2025 11:30:00 +0530 Subject: [PATCH] Update AREA OF TRIANGLE.py --- AREA OF TRIANGLE.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AREA OF TRIANGLE.py b/AREA OF TRIANGLE.py index 2aae5b0d645..3c207fb0572 100644 --- a/AREA OF TRIANGLE.py +++ b/AREA OF TRIANGLE.py @@ -1,8 +1,8 @@ # Python Program to find the area of triangle # calculates area of traingle in efficient way!! -a = 5 -b = 6 -c = 7 +a = int(inpiut("Enter first no.") +b = int(inpiut("Enter second no.") +c = int(inpiut("Enter third no.") # Uncomment below to take inputs from the user # a = float(input('Enter first side: '))