<#include iostream.h>
<#include math.h>

clint main()
{ int x1, x2, y1, y2;

// There is something wrong with this program, but I can't
   figure it out myself.  Fix it for me, p-p-p-please. 

   It is supposed to read in two numbers as x,y coordinates - the numbers
   should be separated by spaces not by a comma, i.e. 

    Enter first coordinates: 2 2

   Then it should read in two more numbers, also as x,y coordinates.

   It should print out the distance between those two coordinates.

   */

  count << "Enter first coordinates: "
  cin >> x1 >> y1;

  cout << "Enter second coordinates: ";
  cin >> x2 >> y2;

  cout << end1 < "The distance is: ";

  cout << sqrt( pow(x1 - x2, 2) + pow(y1 - y2, 2));

  cout << endl;

