import stdio;
int
main(int argc, char **argv)
{
return f(1);
}
f(int i)
printf("%d", i);
i = 2;
printf(";%d\n", i);
return 0;