#!/usr/bin/env python
import sys

import numpy as np
import matplotlib.pyplot as plt

N = 1000
if len(sys.argv) > 1:
    N = int(sys.argv[1])

x = np.random.random(N)
y = np.random.random(N)

plt.plot(x, y, 'b.', markersize=1)
plt.show()
