#include using namespace std; typedef long long ll; typedef pair P; #define rep(i, n) for (int i = 0; i < (int)(n); ++i) #define all(x) (x).begin(),(x).end() template inline bool chmin(T &a, T b) {if (a > b){a = b;return true;}return false;} template inline bool chmax(T &a, T b) {if (a < b){a = b;return true;}return false;} int main(){ cin.tie(0); ios::sync_with_stdio(false); std::cout<>a>>b; double di = 100000; double ans=0.0; for(double x=a; x<=b; x+=1/di){ ans += abs((x-a) * (x-b))/di; } cout<