
fun(int x)
{
	return x+1;
}
main()
{
	int m = 3;
	m = fun(m);
}
