Answer
The program prompts the user to enter the side of a pentagon and displays the area.
Work Step by Step
The program prompts the user to enter the side of a pentagon and displays the area.
$Code:$
import math
side=float(input("Enter the side"))
arae=(5*math.pow(side,2))/(4*math.tan(math.pi/5))
print("Thea area of pentagon is ",arae)