Expected results for test: P3-53.pl460 P3-53.pl460 : (define (main) (let ((S (read))) (display "The string you entered is ") (display S) (newline) ) ) (main) Input file: P3-53.pl460 0 errors found in input file P3-53.cpp : // Autogenerated PL460 to C++ Code // File: P3-53.cpp #include #include "Object.h" using namespace std; int main () { Object __RetVal; { Object S = read(cin); cout << Object("The string you entered is "); cout << S; cout << endl; } return 0; } PL460 program output: The string you entered is Hello World C++ program output: The string you entered is Hello World Differences: < pl460 | cpp > The string you entered is Hello World The string you entered is Hello World