#include <stdio.h>

int main() {
    arr[]={10,20,35,45,50};
    for(int i=0;i<5;i++){
        printf("%d\n",arr);
    }
}