#include<bits/stdc++.h> using namespace std; int main(){ int s=0; for(int i=1;i<=10;i++){ s=s+i*(i+1); } cout<<s; }