#include using namespace std; int main() { long long a,b;cin >> a >> b; double x=(b-a)*(b-a)*(b-a); cout << fixed << setprecision(10) << x/6 << endl; }