public class meiqiu {
public static void main(String arg[]){
int ans=0;
for(int i = 1; i <= 100; ++i)
ans += (1+i)*i/2;
System.out.print(ans);
}

}