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): num = (x+y)%m ans = max(ans,num) print(ans)