a, b = map(int, input().split()) if len(str(a*b)) > 8: print("E") else: print(a*b)