Untitled
Anonymous
plain_text
10/09/2023 4:47 AM
248 B
11
Indexable
a=int(input("enter the side a:"))
b=int(input("enter the side b"))
if(a==b):
print("it is a square and area is:",a*a);
else:
print("it is a rectangle and area is",a*b)
Editor is loading...