1.

Write a program to enter length and breadth and find area of rectangle

Answer» a=float(input("enter the length"))b=float(input("enter the breath"))area of rectangle=a*bprint(area of rectangle)


Discussion

No Comment Found