#include<stdio.h>
int fun(int *a)
{
	return *a+=2;
}
int main()
{
	//int i;
	printf("%d\n",fun((int[]){5}));
	return 0;
}