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