Evaluative
#code #python

inputslist = input().split()
intsmap = map(int, inputslist)
coefficients = list(intsmap)
x = int(input())
result = 0
for i in range(9):
result += coefficients[i] * (x ** i)
print(result)
HTB{*******************************w1N}
Last updated