Help me in solving NUMREC problem

My issue

hey is there any chance i get a video solution of this problem or this type of problems

Learning course: Prepare for your DSA interviews
Problem Link: CodeChef: Practical coding for everyone

@richard1234 - video solutions for these problems are currently not in the content roadmap.
A few months down the line we will pick this up.

include <stdio.h>
define ll long long int

int main(void) {
int t;
scanf(“%d”,&t);
while (t–)
{
ll n,m,new1;
scanf(“%lld%lld”,&n,&m);

    new1 = ((n*(n+1)) * (m*(m+1))/4)-(n*m);
    printf("%lld\n",new1);

}
return 0;

}