#yuki722 import re a,b=map(int,input().split()) c=a*b r=re.compile('^-?[1-9]00+$') if r.match(str(a)) and r.match(str(b)): res=str(c//10) else: if abs(c)<=99999999: res=str(c) else: res='E' print(res)