执行下面C++代码后得到的输出是( )。
int count= 0, i, s;
for (i = 0, s = 0 ; i < 20; i++, count++)
s += i++;
cout << s << " " << count;
190 20
95 10
90 19
90 10