int f(int x) { static int y =10; x = x*y; y++; return (x); } void main () { static int a = 1; a = f (a); a = f (a); print f("%d", a); }