填空题

有以下程序:
#include <iostream>
using namespace std;
int main()

int i=010,j=10;
cout<<(++i)<<","<<i--<<end1;
return 0;

则该程序运行后的输出结果是 【6】

【参考答案】

9,10