[ZJ]d294: 算算算....Easy

題目:
http://zerojudge.tw/ShowProblem?problemid=d294
=====================================================

#include<bits/stdc++.h>
using namespace std;
typedef long long int LL;
int main()
{
LL n,m;
while(scanf("%lld%lld",&n,&m)!=EOF)
{
printf("%lld\n",((n*(n+1))*(m*(m+1)))/4);
}

return 0;
}

留言

這個網誌中的熱門文章

[ZJ]b513: 判斷質數-商競103

[ZJ]d212: 東東爬階梯