#include #include #include #include // Yukicoder №55 正方形を描くだけの簡単なお仕事です。 ★★ // https://yukicoder.me/problems/no/55 // *********************** #define PRINCR do{printf("\n");fflush(stdout);}while(0) #define GETLINE(str) do{char *p;fgets(str,sizeof(str),stdin);p=strchr(str,'\n');if(p)*p='\0';}while(0) #define REP(a,b) for(int a=0;a<(int)(b);++a) static char *GETWORD(char* str) {char c;char *cp;cp=&str[0];c=fgetc(stdin);while( c != EOF ){if((c==' ')||( c=='\n')) break;*cp++=c;c=fgetc(stdin);}*cp='\0';return &str[0];} #define GETINTS(a,b) {char s[34];int *ap=a;REP(i,b){GETWORD(s);sscanf(s,"%d", ap);ap++;}} static int GETLINEINT(void) {char s[34];GETLINE(s);return atoi(s);} static int GETWORDINT(void) {char s[34];GETWORD(s);return atoi(s);} #define Yes(a) printf("%s",((a)?"Yes":"No")) #define ABS(c) ((c)<0?(-(c)):(c)) typedef struct HOGE { int x; int y; } SQUARE; SQUARE PT[4]; double mySqrt(double x) { double s,last; if(x<=0.0) return 0.0; if (x > 1) s = x; else s = 1; do { last = s; s = (x / s + s) * 0.5; } while (s < last); return last; } int main() { double ab,bc; REP(i,3) { PT[i].x = GETWORDINT(); PT[i].y = GETWORDINT(); } REP(k,3) { ab = (PT[0].x-PT[1].x) * (PT[0].x-PT[1].x); ab += (PT[0].y-PT[1].y) * (PT[0].y-PT[1].y); bc = (PT[1].x-PT[2].x) * (PT[1].x-PT[2].x); bc += (PT[1].y-PT[2].y) * (PT[1].y-PT[2].y); if( ab == bc ) break; for(int i=2; i >= 0; --i ) { PT[i+1].x = PT[i].x; PT[i+1].y = PT[i].y; } PT[0].x = PT[3].x; PT[0].y = PT[3].y; } if( ab != bc ) { printf("%d\n", -1 ); } else { PT[3].x = PT[2].x + ( PT[0].x - PT[1].x ); PT[3].y = PT[2].y + ( PT[0].y - PT[1].y ); printf("%d %d\n", PT[3].x, PT[3].y ); } return 0; }