#include<stdio.h>

int main()
{
    int a[4] = {1, 2, 3, 4};
    int b[4] = {1, 2, 3, 4};

    int n = &b[4] - &a[4];
    printf("%d\n", n);
}