L, R = map(int, input().split()) result = 0 result += ((R - L)) // L * ((L - 1) * L // 2) t = R % L result += t * (t + 1) // 2 print(result)