Computer Science, asked by kittukatiyara, 5 months ago

write a program to accept the side of a square and display the area

Answers

Answered by sambhavgautam6
4
  • #Program to accept the side of a square and display the area
  • side = int(input("enter the side lenght:::"))
  • print("Area of square is::", side**2)
Similar questions