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 = 6 * edge**2
This prints the calculated surface area
print("Surface Area: "+str(area))
This solution was implemented in Python