Computer Science, asked by shaunroy2404, 6 months ago

Write a program in Python to accept the length and breadth of a rectangular field from the user (each in meters).Find the cost of fencing the rectangular field at the rate of Rs 50 per m . Display the result with appropriate message.

Answers

Answered by kbsarma2004
1

Answer:

l = int (input("Length= "))

b= int (input("Breadth= "))

p = 50

c = l+b*2*50

print c

Similar questions