It doesn't compile, why?
#include <iostream>
#include <string>
using namespace std;
int main()
{
for(int cnt1 = 0, int cnt2 = 10; cnt1<10; ++cnt1, --cnt2)
{
cout << cnt1 << "--------Hello!---------" << cnt2 << endl;
}
system("PAUSE");
}