#!/usr/bin/perl # The distance formula!!! print "What is the first point? ("; chomp ($x1 = ); print ","; chomp ($y1 = ); print ")\n"; print "What is the second point? ("; chomp ($x2 = ); print "$x2, "; chomp ($y2 = ); print "$y2)";