#include "MyPoint.h" int main() { cout << "p1: "; Point p1(10, 20); p1.show(); cout << "p2: "; Point p2(10.2, 14.5); p2.show(); return 0; }