public static void main(String[] args){
int n;
Scanner in = new Scanner(System.in);
n=in.nextInt();
int[] arr = new int[n];
for(int i=0; i<=n; i++){
arr[i]=i*2;
}
}
I'm just confused about what is the input in space or time complexity.