python/2024-7-14-1.py

7 lines
86 B
Python
Raw Permalink Normal View History

2024-07-14 10:38:30 +08:00
a=int(input())
b=int(input())
if a**b>1000000000:
print(-1)
else:
print(a**b)