#include using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int a,b; cin >> a >> b; int d = b - a; cout << fixed << setprecision(10) << d * d * d / 6.0 << '\n'; }