Skip to content

Commit b2fc1ce

Browse files
authored
Update AREA OF TRIANGLE.py
1 parent a176efc commit b2fc1ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

AREA OF TRIANGLE.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Python Program to find the area of triangle
22
# calculates area of traingle in efficient way!!
3-
a = 5
4-
b = 6
5-
c = 7
3+
a = int(inpiut("Enter first no.")
4+
b = int(inpiut("Enter second no.")
5+
c = int(inpiut("Enter third no.")
66

77
# Uncomment below to take inputs from the user
88
# a = float(input('Enter first side: '))

0 commit comments

Comments
 (0)