//#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 = 0xccccccc; const ll LINF = 922337203685477580LL; 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 N = 20; const int X = 1<<17; //head int n, m; int dist[N][N]; int dp[X][N]; int ans = 0; int main() { ios::sync_with_stdio(false); cin.tie(0); cin >> n >> m; rep(i, n) fill(dist[i], dist[i]+n, -INF); rep(i, m) { int a, b, c; cin >> a >> b >> c; a--; b--; chmax(dist[a][b], c); dist[b][a] = dist[a][b]; } rep(i, 1<>j&1) { int u = i^(1<>k&1) { chmax(dp[i][j], dp[u][k] + dist[j][k]); } chmax(ans, dp[i][j]); } } cout << ans << endl; }