class C { int x= 5; int y= 9; public: C() {}; // don't need to state x,y values. C (int xx) : x(xx) {} // y=9 without me saying it again. };