#include <stdio.h>
 
int main()
{
    int a[3] = {2, 4, 6};
    printf("%d\n%d\n%d", *(a + 1), a, a + 1);
    return 0;
}