a,b=map(int,input().split()) if a%100==0 and b%100==0: print(str(a*b)[:-1]) else: t=a*b if -99999999<=t<=99999999: print(t) else: print('E')