#include <stdio.h>

int main(void) {
	// your code goes here
	int s[2]={1.2};
	int *p;
	p=s+1;
	printf("%d",p[2]);
	return 0;
}
