/* L2-3.cpp (Sum and Difference) Will this program compile? Fix it so that it gives the intended output. */ #include using namespace std; int main() { int x, y; x = 10; y = 25; cout << "Sum = " << x+y << endl; cout << "Difference = " << "x-y" << endl; return 0; }