#include<stdio.h>
int main()
{
    int arr[5]={10,54,25,65,45};
    for(int i=0;i<5;i++);
   printf("%d",arr);
   return 0;
}