#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 pint = pair; using vp = vector; map polar_sort(vp &v) { sort(all(v), [](auto const& lhs, auto const& rhs) { return lhs.first*rhs.second < rhs.first*lhs.second; }); map m; lint a = 0; for (auto p : v) m[p] = ++a; return m; } int main() { lint N; cin >> N; vp v(N); lint a=0, b=0, c=0, x, y, z; rep(i, N) { cin >> x >> y; v[i] = {x, y}; } rep(i, N) { vp w; rep(j, N) { if (i == j) continue; w.pb({v[j].first-v[i].first, v[j].second-v[i].second}); } map m = polar_sort(w); rep(j, N-2) { if (w[j].first*w[j+1].second == w[j].second*w[j+1].first) { a++; break; } } } std::cout << a << '\n'; }