求助70分python4个TLE1个WA
a=input().split(' ') b=int(a[1]) a=int(a[0]) c=a**b if c>10000000000: print("-1") else: print(c)