下面的C++代码执行后其输出是()。
cnt = 0; for (int i = -10; i < 10; i++) for (int j = 0; j < i; j++) cnt += 1; cout << cnt;
145
125
55
45