mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
11 lines
177 B
Plaintext
11 lines
177 B
Plaintext
global ((int, int) -> int) op;
|
|
|
|
int check_assoc(int a, int b, int c) {
|
|
return op(op(a, b), c) == op(a, op(b, c));
|
|
}
|
|
|
|
int main() {
|
|
op = _+_;
|
|
return check_assoc(2, 3, 9);
|
|
}
|