#include <stdio.h>

__attribute__ ((pure)) int fun(int i)
{
	return i*i;
}

int main()
{
	int i=10;
	printf("%d",fun(i));
	return 0;
}