# Exponent Calculator # Calculate a base to an exponent's power. # Mithat Konar base = int(input('Enter the base: ')) exponent = int(input('Enter the exponent: ')) result = base ** exponent print(str(base) + ' to the power of ' + str(exponent) + ' is ' + str(result))