Files
rxcc/test.c

5 lines
59 B
C
Raw Normal View History

2026-01-31 15:07:04 -05:00
int main() {
2026-02-11 16:56:47 -05:00
return 4 ^ 2 | 34 & 20 | (3 & 4) & ~1;
2026-01-31 15:07:04 -05:00
}