#!/usr/bin/python

print """Content-type: image/svg+xml

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   viewBox="0 0 64 64"
   version="1.1"
   height="600"
   width="600">
  <g>
    <path d="M 32,2 62,62 2,62 z" 
      style="fill: none; stroke: #000000;" />
  </g>
</svg>
""";
