/* * * 7.36 * * */ struct X { X (int i, int j): base(i), rem(i % j) { } int base, rem; }; int main () { return 0; }