import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; public class Sol1 { public static void main(String args[]) throws IOException{ BufferedReader br = new BufferedReader (new InputStreamReader(System.in)); int n =Integer.parseInt(br.readLine()); int arr[]= new int[n]; String s =br.readLine(); String ss[]= s.split(" "); for(int i =0; i