9 lines
76 B
Plaintext
9 lines
76 B
Plaintext
int main() {
|
|
int x = 4;
|
|
if (x < 3)
|
|
x = 23;
|
|
else
|
|
x = 32;
|
|
return x;
|
|
}
|