oom-heap.py 137 B

12345
  1. import sys
  2. big = [0] * (128 * 1024 * 1024)
  3. big[10000] = int(sys.stdin.readline().strip())
  4. sys.stdout.write("correct %d\n" % big[10000])