A, B, C, D = map(int, raw_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