#include "plplot.h"

void plytik(x,y,left,right)
int x, y, left, right;
{
      draphy(x,y);
      if (left != 0) draphy(x-left,y);
      if (right != 0) draphy(x+right,y);
      draphy(x,y);
}
