a, b, c, d, m = map(int, input().split()) res = 0 for i in range(a, b + 1): for j in range(c, d + 1): res = max(res, (i + j) % m) print(res)