4 lines
91 B
Text
4 lines
91 B
Text
int program (int argc, string[] argv) {
|
|
var a = new int[]{1, 100, 999};
|
|
return a[2];
|
|
}
|