int m = 4, n = 0; int incm() { int t = m; ++m; return t; } int incn() { int t = n; ++n; return t; }