#include using namespace std; using ll = long long int; using lc = complex; double dot(lc a, lc b) { return (a * conj(b)).real(); } double cross(lc a, lc b) { return (a * conj(b)).imag(); } int main(void) { constexpr ll MOD = 1e9 + 7; constexpr double PI = acos(-1); cout << fixed << setprecision(32); cin.tie(0); ios::sync_with_stdio(false); ll n; cin >> n; vector pt(n); for(auto &e: pt) { double x, y; cin >> x >> y; e = lc(x, y); } ll r = 0; for(ll i=0; i