Computer Science, asked by FARAZAHMED123, 1 month ago

WAP using INPUT statement to find the area of rectangle.
only statement

Answers

Answered by kambhampatisumathi
0

Answer:

python

Explanation:

length=int(input())

breadth=int(input ())

area=length *breadth

print(area)

Answered by whitedevil813259
0
Cls
Input “ enter the length “;a
Input “ enter the breath” ; b
C = a*b
Print C
End
Similar questions