8 lines
65 B
C
8 lines
65 B
C
int a, b;
|
|
|
|
int main(void) {
|
|
a = 1 + 2;
|
|
b = a + 3;
|
|
return 0;
|
|
}
|