//#define _GLIBCXX_DEBUG #include #define rep(i, n) for(int i=0; i; using vs = vector; using vi = vector; using vvi = vector; template using PQ = priority_queue; template using PQG = priority_queue, greater >; const int INF = 100010001; const ll LINF = (ll)INF*INF*10; template inline bool chmax(T1 &a, T2 b) {return a < b && (a = b, true);} template inline bool chmin(T1 &a, T2 b) {return a > b && (a = b, true);} template istream &operator>>(istream &is, pair &p) { return is >> p.first >> p.second;} template ostream &operator<<(ostream &os, const pair &p) { return os << p.first << ' ' << p.second;} const int X = 1e5+10; //head int n, m; ll a[X], b[X]; ll n1, nm; int main() { ios::sync_with_stdio(false); cin.tie(0); cin >> n >> m; rep(i, n) cin >> a[i] >> b[i]; for(int i = n-1; i >= 0; i--) { n1 += max(a[i], b[i]); nm += a[i]*(m-1); nm += max(a[i], b[i]); if(i) { chmax(n1, 0); } chmax(nm, n1); } cout << nm << endl; }