9 lines
103 B
Text
9 lines
103 B
Text
|
|
global y = true;
|
||
|
|
|
||
|
|
int program(int argc, string[] args) {
|
||
|
|
if (y) {
|
||
|
|
return 17;
|
||
|
|
}
|
||
|
|
return 15;
|
||
|
|
}
|