Expected results for test: P3-25.pl460 P3-25.pl460 : (define (main) (display (+ 5 2 -1 5)) (newline) (display (+ 5.3 2.12 -1.5 5.9)) (newline) ) (main) Input file: P3-25.pl460 0 errors found in input file P3-25.cpp : // Autogenerated PL460 to C++ Code // File: P3-25.cpp #include #include "Object.h" using namespace std; int main () { Object __RetVal; cout << (Object("5") + Object("2") + Object("-1") + Object("5")); cout << endl; cout << (Object("5.3") + Object("2.12") + Object("-1.5") + Object("5.9")); cout << endl; return 0; } PL460 program output: 11 11.82 C++ program output: 11 11.82 Differences: < pl460 | cpp > 11 11 11.82 11.82