10 lines
77 B
C++
10 lines
77 B
C++
int foo();
|
|
|
|
int main()
|
|
{
|
|
if (foo() == 0) {
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|