10 lines
116 B
C
10 lines
116 B
C
int main(void) {
|
|
int a;
|
|
a = 0;
|
|
if (a) {
|
|
a = 1;
|
|
} else {
|
|
a = 2;
|
|
}
|
|
return a;
|
|
} |