/* CS201 Example RJB What does this program display when executed? */ #include using namespace std; int main() { int i; i=3; int j; j = 4; i = i*i + j*j; cout << j << ", " << i << endl; return 0; }