Computer Science, asked by asrdcatelangana, 1 day ago


Write a program to input side of a square and find the area and perimeter of a square.

Answers

Answered by gourpihu0710
0

s=int(input("enter the sides":)

area=s*s

perimeter=s+s+s+s

print("the area and perimeter",area,perimeter)

Similar questions