import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.Scanner; public class Hackerr { public static Scanner eggo = new Scanner(System.in); public static PrintWriter cannon; public static final boolean TEXST=true; public static void setup() throws FileNotFoundException{ if(TEXST){ cannon = new PrintWriter(System.out); eggo=new Scanner(System.in); } else{ eggo=new Scanner("Template"); cannon = new PrintWriter("Template"); } } public static int innt() throws NumberFormatException, IOException{ return Integer.parseInt(eggo.nextLine()); } public static int[] inant() throws IOException{ String[] h; h=eggo.nextLine().split(" "); int[] ret = new int[h.length]; for(int i=0;i