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