#include int main() { for (int i=0, j=0; i<3; i++, j++) std::cout << "i: " << i << " j: " << j << std::endl; return 0; } i: 0 j: 0i: 1 j: 1i: 2 j: 2