7 lines
83 B
C
7 lines
83 B
C
|
int a (int), b (int), c (int);
|
||
|
int
|
||
|
main (void)
|
||
|
{
|
||
|
return a (6) + b (4) - c (2);
|
||
|
}
|