При наличии ограничений (0 <= x <= 8, 0 <= n <= 9) Выход должен быть x ^ n (т. Е. X возведен в степень n). Здесь я получаю ошибку. Не могу понять, почему </p>
n_input = input()
given_input = n_input.split(" ")
x = int(given_input[0])
n = int(given_input[1])
if (0<=x<=8 and 0<=n<=9):
output = x**n
print(output)
else:
print("Values of x and n exceeding constraints")