You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
210 B
C++

//http://www.cnblogs.com/iwtwiioi/p/4985747.html
#include <cstdio>
int main()
{
int p, q;
scanf("%d%d", &p, &q);
printf("%lld", 1ll * (q - 1) * (p - 1) / 4 + (p == q) * (q - 1) / 2);
return 0;
}