// 2023 IUSB Programming Competition // Round 2 Problem 3 // Shortest Cycle // Solution by Liguo Yu import java.util.Scanner; public class round2_p3 { public static void main(String[] args) { Scanner input = new Scanner(System.in); int n = input.nextInt(); int[] x = new int[n]; int[] y = new int[n]; for(int i=0; i