Ответ:
print('Введите x')
x=int(input())
print('Введите n')
n=int(input())
if x<=10 and n<=10:
print(x**n)
else:
print('Введённое число превышает 10')
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
print('Введите x')
x=int(input())
print('Введите n')
n=int(input())
if x<=10 and n<=10:
print(x**n)
else:
print('Введённое число превышает 10')
Объяснение: