5 lines
84 B
Text
5 lines
84 B
Text
|
|
int program (int argc, string[] argv) {
|
||
|
|
var a = new int[]{0,0};
|
||
|
|
return a[-1];
|
||
|
|
}
|