#include <math.h>

double tan(double x)
{
  return (sin(x)/cos(x));
}
