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