#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 = modint998244353; using vm = vector; int main() { lint L, R, A, B, C; cin >> L >> R >> A >> B >> C; mint a=0, b=0, c=0, x, y, z; if (A+B > R-L) drop(0); if (C > R-L) drop(0); if (A+B >= C) { x = R-L-(A+B)+1; a = x*(x+1)*(x+2)/6; } else { x = R-L-C+1; y = C-(A+B)+1; a = x*(x+1)*(3*y+x-1)/6; } std::cout << a.val() << '\n'; }