1 2 3 4 5 6 7 8 9 10
int foo(); int bar(); int main() { if (foo() != bar()) { return 1; } return 0; }