跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2820. Counting Rhombi

    ID: 2826 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 3 上传者: 标签>枚举数学算法思想基础难度共享题库Codeforces英文题面题目来源题面语言

Counting Rhombi

题目描述

B. Counting Rhombi
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

You have two positive integers w and h. Your task is to count the number of rhombi which have the following properties:

  • Have positive area.
  • With vertices at integer points.
  • All vertices of the rhombi are located inside or on the border of the rectangle with vertices at points (0,0), (w,0), (w,h), (0,h). In other words, for all vertices (xi,yi) of the rhombus the following conditions should fulfill: 0≤xiw and 0≤yih.
  • Its diagonals are parallel to the axis.

Count the number of such rhombi.

Let us remind you that a rhombus is a quadrilateral whose four sides all have the same length.

Input

The first line contains two integers w and h (1≤w,h≤4000) − the rectangle's sizes.

Output

Print a single number − the number of sought rhombi.

Please do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use cin, cout streams or the %I64d specifier.

Examples
Input
2 2
Output
1
Input
1 2
Output
0
Note

In the first example there exists only one such rhombus. Its vertices are located at points (1,0), (2,1), (1,2), (0,1).


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2491 题。保留原作者与原赛事署名。