A,B=map(int,input().split()) ans='E' if A%10==0 and B%10==0: ans=int(A*B/10) else: if len(str(A*B))<=8: ans=(A*B) print(ans)