Answer:
Program in Python:
edge = float(input("Edge Length: "))
area = 6 * edge**2
print("Surface Area: "+str(area))
Step-by-step explanation:
This line prompts the user for the length of the edge
edge = float(input("Edge Length: "))
This calculates the surface area using
![Area = 6a^2](https://img.qammunity.org/2022/formulas/computers-and-technology/college/o92i0cny2c667kk8hx2fb1yjp55nmvfbcp.png)
area = 6 * edge**2
This prints the calculated surface area
print("Surface Area: "+str(area))
This solution was implemented in Python