int fa(int d);
int fc(int d){
return fa(d);
}
int fa(int d){
return d;
int fc(int d);
int main(int argc, char *argv[])
{
fc(10);
return 0;