#include using namespace std; typedef long long ll; typedef long double ld; typedef vector vi; typedef vector vd; typedef vector vll; typedef vector vs; typedef vector vb; typedef pair pii; struct cww{cww(){ios::sync_with_stdio(false);cin.tie(0);}}star; #define all(c) (c).begin(), (c).end() #define rall(c) (c).rbegin(), (c).rend() #define vv(type, c, m, n, i) vector> c(m, vector(n, i)) #define mat(type, c, m, n) vector> c(m, vector(n));for(auto& r:c)for(auto& i:r)cin>>i; #define rep(i,a,n) for(int i=(a), i##_len=(n); ii##_len; --i) #define each(x,y) for(auto &(x):(y)) #define var(type, ...)type __VA_ARGS__;Scan(__VA_ARGS__); template void Scan(T& t) { cin >> t; } templatevoid Scan(First& first, Rest&...rest) { cin >> first; Scan(rest...); } #define vec(type, c, n) vector c(n);for(auto& i:c) cin>>i; #define len(x) ((int)(x).size()) #define mp make_pair #define eb emplace_back #define em emplace #define pb pop_back #define fi first #define se second #define get(a, i) get(a) #define mt make_tuple inline string zero(int a,string s,char c='0'){return string(a-len(s),c)+s;} inline string zero(int a,int t,char c='0'){return zero(a, to_string(t), c);} inline string zero(int a,ll t,char c='0'){return zero(a, to_string(t), c);} #define mini min_element #define maxi max_element #define sum accumulate #define chmax(a,b) if(ab)a=b template inline void print(T t){cout << t << "\n";} template inline void print(H h, T... t){cout << h << " ";print(t...);} bool mat[50][50]; int main() { var(int, n, m); int a, b; rep(i, 0, m) { cin >> a >> b; mat[a][b] = mat[b][a] = true; } int cnt = 0, d1, d2, d3, d4; rep(i, 0, n) { rep(j, i + 1, n) { rep(k, j + 1, n) { rep(l, k + 1, n) { d1 = mat[i][j] + mat[i][k] + mat[i][l]; d2 = mat[j][i] + mat[j][k] + mat[j][l]; d3 = mat[k][i] + mat[k][j] + mat[k][l]; d4 = mat[l][i] + mat[l][j] + mat[l][k]; if (d1 == 2 && d2 == 2 && d3 == 2 && d4 == 2) ++cnt; } } } } print(cnt); return 0; }