Python Program to find area of pentagon

Program

apothem = int(input("Enter the apothem:\t"));
side = int(input("Enter the length of side:\t"));
area_num = (5 * side * apothem);
area = area_num / 2;
print("Area of pentagon:", area);

Output

$ python3 area_of_pentagon.py 
Enter the apothem:		8
Enter the length of side:	6
Area of pentagon: 120.0