#include void main(){ int m = 2,n = 1,s = 0; for(int i = 0; i < 100; i++,m++) { s += n; n += m; } printf("%d",s);}