c-compiler/test.c
2026-04-10 17:13:14 +03:00

5 lines
65 B
C

int main() {
int a = 5;
a = 15 + 20;
return a - 30;
}