#include int main(int argc, char *argv[]) { int x, y, z; z = 4; x = y = z; cout << "x = " << x << endl; cout << "y = " << y << endl; cout << "z = " << z << endl; }