#include #include int main(void) { opp::array a10; opp::array a20; for(int i=0; i<10; i++) a10[i] = i; for(int i=0; i<20; i++) a20[i] = i; int s = 0; for(int i=0; i<10; i++) s += a10[i]; for(int i=10; i<20; i++) s -= a20[i]; assert(s == -100); return 0; }