import sys

a=int(input())
b=int(input())
print(eval('a * b'))
print(pow(a,b))