#include <stdio.h>

int a[6], n;

int main() {
    for(n=0; n<6; n++) {
        scanf("%d", &a[n]);
    }
    for(n=0; n<6; n++) {
        printf("a[%d]=%d\n", n, a[n]);
    }
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: