Write an algorithm to get value of side of square from the user to find its perimeter
Answers
Answered by
0
Answer:
s= int(input(enter side of a square))
p=4×s
print("perimeter of given square is",p)
Similar questions