a,b=map(int,input().split()) if a%100==0 and b%100==0: print(a*b//10) else: res=a*b if abs(res)<10**8: print(res) else: print("E")