#include<stdio.h>
int main(){
    int n;
    printf("Enter the size of the array:");
    scanf("%d",&n);
    if(n<0){
         printf("Invalid Input");
    }
    int arr[n];
    printf("Enter the %d numbers:")
}