<백준 문제풀이: 3009번> 네 번째 점
간단한 직사각형의 꼭짓점 구하는 문제이다: import sys coordinate_list = [] x1, y1 = map(int, sys.stdin.readline().split()) x2, y2 = map(int, sys.stdin.readline().split()) x3, y3 = map(int, sys.stdin.readline().split()) x_coordinates = [x1, x2, x3] y_coordinates = [y1, y2, y3] coordinate_list.append([x1, y1]) coordinate_list.append([x2, y2]) coordinate_list.append([x3, y3]) for i in x_coordinates: for j in y_coordi..