#include using namespace std; typedef long long ll; typedef pair P; typedef pair Q; #define REP(i,n) for(int i=0;i> N; vector x(3),y(3); REP(i,3) cin >> x[i] >> y[i]; cout << 4 << endl; cout << x[2]-1 << ' ' << y[2] << endl; cout << x[2]+1 << ' ' << y[2] << endl; cout << x[2] << ' ' << y[2]-1 << endl; cout << x[2] << ' ' << y[2]+1 << endl; return 0; }