import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int n=sc.nextInt(); long[] num=new long[n]; for(int i=0;i<n;i++){ num[i]=sc.nextLong(); } for(int j=0;j<n;j+...