#include #include using namespace std; using namespace atcoder; typedef int64_t lint; #define rep(i, n) for(int i=0; i; using vvi = vector>; template inline void vin(vector& v) { rep(i, v.size()) cin >> v.at(i); } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template inline void drop(T x) { cout << x << endl; exit(0); } template void vout(vector v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; using mint = modint1000000007; using vm = vector; int main() { lint A, B; cin >> A >> B; mint a=0, b=0, c=0; if (A < B) swap(A, B); if (A+B == 0) drop(1); lint x, y, z; x = (A+B)/2; y = (B-A)/2; a = x-y+1; z = (-A-B)/2; // show(x) // show(y) // show(z) b = y-z+1; c = a*b; // show(c.val()) x = (A+B-1)/2; y = (B-A-1)/2; a = x-y+1; z = (-A-B+1)/2; // show(x) // show(y) // show(z) b = y-z+1; c += a*b; std::cout << c.val() << '\n'; }