#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; int main() { lint x1, y1, x2, y2, x3, y3; cin >> x1 >> y1 >> x2 >> y2 >> x3 >> y3; lint a=0, b=0, c=0, x, y, z; int dx[4] = {1, -1, 0, 0}; int dy[4] = {0, 0, 1, -1}; rep(i, 4) { rep(j, 4) { rep(k, 4) { x = x1+dx[i]; y = y1+dy[i]; chmax(a, abs((x2+dx[j]-x)*(y3+dy[k]-y) - (x3+dx[k]-x)*(y2+dy[j]-y))); } } } cout << fixed << setprecision(10) << (double)a/2 << endl; }