Write a program that takes the length of an edge (an integer) as input and prints the cube’s surface area as output.
a) length = int(input(Enter the length of the edge: ))
surfaceₐrea = 6 length 2
print(The cube's surface area is:, surfaceₐrea)
b) length = int(input(Enter the length of the edge: ))
surfaceₐrea = 6 length
print(The cube's surface area is:, surfaceₐrea)
c) length = int(input(Enter the length of the edge: ))
surfaceₐrea = 6 length length
print(The cube's surface area is:, surfaceₐrea)
d) length = int(input(Enter the length of the edge: ))
surfaceₐrea = 6 length
print(The cube's surface area is:, surfaceₐrea)