5 lines
98 B
C
5 lines
98 B
C
int first[2048] = { 5 };
|
|
int second[2048] = { 6 };
|
|
int main() {
|
|
return first[0] + second[0];
|
|
}
|