View Code of Problem 3629

#include <stdio.h>

int main(){
    int xx[100000][10000000];
    xx[10000][100000-1] = 1;
  return 0;
}

Double click to view unformatted code.


Back to problem 3629