Computer Science, asked by pavnigoenka16700, 8 months ago

write an algorithm input sides of rectangle and print area​

Answers

Answered by ChRIsToOO7
1

Explanation:

x=int(input("enter the first side"))

y=int(input("enter the second side"))

print("area of rectangle is: ",x*y)

Similar questions