1 2 3 4 5 6 7 8 9
#include <iostream> int main() { int x; int y; int z; x = y = z = 1; std::cout << x << " " << y << " " << z << "\n"; }