#include <iostream> using namespace std; int main(){ int i,a=0; for(i=1;i<=10;i++){ a+=i*(i+1); } cout<<a<<endl; }