# draw concentric circles
for x in range(6):
  circle(0, 0, x)
  
# draw a grid of points
for x in range(5):
  for y in range(5):
    point(x, y)