#include <bits/stdc++.h>
using namespace std;
template<typename T>
struct MaxFlowMinCost {
vector<vector<int>> G;
int src, dest;
vector<int> Parent, InQ;
vector<T> Dist;
vector<vector<T>> F, C, K;
void initMat(vector<vector<T>> &M, int n) {
M.clear();
M.resize(n, vector<T>(n, 0));
}
MaxFlowMinCost& Initialize(int n, int m = 0) {
G.clear();
G.resize(n);
Parent.resize(n);
Dist.resize(n);
InQ.resize(n);
initMat(F, n);
initMat(C, n);
initMat(K, n);
return *this;
}
void _addEdge(int from, int to, T cap, T cost) {
C[from][to] = cap;
K[from][to] = cost;
G[from].push_back(to);
}
MaxFlowMinCost& AddEdge(int from, int to, T cap, T cost) {
_addEdge(from, to, cap, cost);
_addEdge(to, from, 0, -cost);
return *this;
}
MaxFlowMinCost& SetSourceSink(int src, int dest) {
this->src = src; this->dest = dest;
return *this;
}
bool Bellman() {
static queue<int> Q;
fill(Dist.begin(), Dist.end(), numeric_limits<T>::max());
fill(Parent.begin(), Parent.end(), -1);
fill(InQ.begin(), InQ.end(), 0);
Dist[src] = 0;
Q.push(src);
while(!Q.empty()) {
int node = Q.front();
Q.pop();
InQ[node] = 0;
if(Parent[node] != -1 && InQ[Parent[node]])
continue;
for(auto vec : G[node]) {
if(F[node][vec] < C[node][vec] && Dist[vec] > Dist[node] + K[node][vec]) {
Dist[vec] = Dist[node] + K[node][vec];
Parent[vec] = node;
if(!InQ[vec]) {
Q.push(vec);
InQ[vec] = 1;
}
}
}
}
return Parent[dest] != -1;
}
pair<T, T> Compute() {
T flow = 0, cost = 0;
while(Bellman()) {
T m = numeric_limits<T>::max();
for(int node = dest; node != src; node = Parent[node]) {
m = min(m, C[Parent[node]][node] - F[Parent[node]][node]);
}
for(int node = dest; node != src; node = Parent[node]) {
F[Parent[node]][node] += m;
F[node][Parent[node]] -= m;
cost += K[Parent[node]][node] * m;
}
flow += m;
}
return {flow, cost};
}
};
int main() {
freopen("fmcm.in", "r", stdin);
freopen("fmcm.out", "w", stdout);
int n, m, s, d;
cin >> n >> m >> s >> d;
auto mfmc = MaxFlowMinCost<int>()
.Initialize(n, m)
.SetSourceSink(s - 1, d - 1);
while(m--) {
int a, b, c, k;
cin >> a >> b >> c >> k;
mfmc.AddEdge(a - 1, b - 1, c, k);
}
cout << mfmc.Compute().second << endl;
return 0;
}