a,b,c,d = map(int,input().split()) cnt = 0 for i in range(a, b+1): for j in range(c, d+1): if i != j: cnt += 1 print(cnt)