#include <stdio.h>

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