11 lines
117 B
C
11 lines
117 B
C
int main(void) {
|
|
int a;
|
|
a = 1;
|
|
if (a) {
|
|
a = 1;
|
|
} else {
|
|
a = 2;
|
|
}
|
|
return a;
|
|
}
|