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