2020-02-01 23:06:01 +01:00

11 lines
92 B
C++

int foo();
int bar();
int main()
{
if (foo() != bar()) {
return 1;
}
return 0;
}