// #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include #include using namespace std; using namespace atcoder; using mint = modint998244353; // using mint = modint1000000007; using ll = long long; using ull = unsigned long long; using ld = long double; using pii = pair; using pll = pair; using T = tuple; using G = vector>; #define rep(i, n) for (ll i = 0; i < (n); ++i) #define rep2(i, a, b) for (ll i = a; i < (b); ++i) #define rrep2(i, a, b) for (ll i = a-1; i >= (b); --i) #define rep3(i, a, b, c) for (ll i = a; i < (b); i+=c) #define rng(a) a.begin(),a.end() #define rrng(a) a.rbegin(),a.rend() #define popcount __builtin_popcount #define popcountll __builtin_popcountll #define fi first #define se second #define UNIQUE(v) sort(rng(v)), v.erase(unique(rng(v)), v.end()) #define MIN(v) *min_element(rng(v)) #define MAX(v) *max_element(rng(v)) #define SUM(v) accumulate(rng(v),0) #define IN(v, x) (find(rng(v),x) != v.end()) template bool chmin(T &a,T b){if(a>b){a=b;return 1;}else return 0;} template bool chmax(T &a,T b){if(a void printv(vector &v){rep(i,v.size())cout< void printvv(vector> &v){rep(i,v.size())rep(j,v[i].size())cout<longlong, exp->0に変更すること。 const double eps = 1e-10; bool equal(double a, double b) { return abs(a-b) < eps;} struct V { double x, y; V(double x=0, double y=0): x(x), y(y) {} V& operator+=(const V& v) { x += v.x; y += v.y; return *this;} V operator+(const V& v) const { return V(*this) += v;} V& operator-=(const V& v) { x -= v.x; y -= v.y; return *this;} V operator-(const V& v) const { return V(*this) -= v;} V& operator*=(double s) { x *= s; y *= s; return *this;} V operator*(double s) const { return V(*this) *= s;} V& operator/=(double s) { x /= s; y /= s; return *this;} V operator/(double s) const { return V(*this) /= s;} double dot(const V& v) const { return x*v.x + y*v.y;} // 内積 double cross(const V& v) const { return x*v.y - v.x*y;} // 外積 double norm1() const { return abs(x) + abs(y);} // L1ノルム double norm2() const { return sqrt(norm2s());} // L2ノルム double norm2s() const { return x*x + y*y;} // L2ノルムの二乗 V normalize() const { return *this/norm2();} // 正規化(ノルムを1にスケールする) V rotate90c() const { return V(-y, x);} // 反時計回りに90度回転 V rotate90() const { return V(y, -x);} // 時計回りに90度回転 // Vがどの象限に属するかの判定を行う関数 int ort() const { if (abs(x) < eps && abs(y) < eps) return 0; if (y > 0) return x>0 ? 1 : 2; else return x>0 ? 4 : 3; } // 偏角の大小関係を定義するための<演算子オーバーロード bool operator<(const V& v) const { int o = ort(), vo = v.ort(); if (o != vo) return o < vo; return cross(v) > 0; } }; istream& operator>>(istream& is, V& v) { is >> v.x >> v.y; return is; } ostream& operator<<(ostream& os, const V& v) { os<<"("< eps) return +1; // 方向ベクトルから見て点pは反時計回り。 if (dir().cross(p-s) < -eps) return -1; // 方向ベクトルから見て点pは時計回り。 if (dir().dot(p-s) < -eps) return +2; // 方向ベクトルの始点側(s側)の延長線上にある。 if (dir().dot(t-p) < -eps) return -2; // 方向ベクトルの終点側(t側)の延長線上にある。 return 0; // 線分st上にある。 } // 2直線が交わるかどうかの判定を行う関数 bool touch(const Line& l) const { int a = ccw(l.s)*ccw(l.t), b = l.ccw(s)*l.ccw(t); return !a || !b || (a == -1 && b == -1); } }; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); vector p(3); rep(i, 3){ cin >> p[i]; } rep(i, 3){ V v1 = p[(i+1)%3]-p[i], v2 = p[(i+2)%3]-p[i]; if (v1.dot(v2) != 0 || v1.norm2s() != v2.norm2s()) continue; V ans = p[(i+1)%3] + p[(i+2)%3] - p[i]; cout << ans.x << " " << ans.y << endl; return 0; } cout << -1 << endl; return 0; }