3009 썸네일형 리스트형 파이썬: 백준 문제풀이 3009번,네 번째 점 x1,y1 = map(int,input().split())x2,y2 = map(int,input().split())x3,y3 = map(int,input().split())tempx = 0tempy = 0if x1==x2: tempx = x3elif x1==x3: tempx = x2elif x2==x3: tempx = x1 if y1==y2: tempy = y3elif y1==y3: tempy = y2elif y2==y3: tempy = y1 print(tempx, tempy) 더보기 이전 1 다음