write an algorithm input sides of rectangle and print area
Answers
Answered by
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