12 lines
173 B
C
12 lines
173 B
C
int main(){
|
|
int x, y, z;
|
|
const PL5_op, b, c;
|
|
x = 2;
|
|
printf(x);
|
|
y = 3 + 3 + x;
|
|
if (x == 2) {
|
|
printf(x);
|
|
printf(y);
|
|
}
|
|
x = 3;
|
|
}
|