Скрипт:
a =(int(input("Введите а -")))
b = (int(input("Введите b -")))
y = a**b
print("Ответ: ", y)
Результат:
Введите а -4
Введите b -2
Ответ: 16
Process finished with exit code 0
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Скрипт:
a =(int(input("Введите а -")))
b = (int(input("Введите b -")))
y = a**b
print("Ответ: ", y)
Результат:
Введите а -4
Введите b -2
Ответ: 16
Process finished with exit code 0