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