Answer:
Following are the program in the Python Programming Language.
#Set integer type variable
letter = 6
#Set integer type variable
Possibility = 26
#Set variable to store total Possibilities
total =Possibility ** letter
#print variable
print(total)
Explanation:
Following are the description of the program.