#include <stdio.h>

int main() {
    // Write C code here
    int a[5];
    int i;
    for (i=0;i<5;i++)
    printf("\nthe marks are=%d",a[i]);
}
