#include using namespace std ; int main() { int a = 1, b = 2, c = 3 ; (a = b) = c ; cout << " a = " << a << " b = " << b << " c = " << c << endl ; }