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