You have two positive integers w and h. Your task is to count the number of rhombi which have the following properties:
Count the number of such rhombi.
Let us remind you that a rhombus is a quadrilateral whose four sides all have the same length.
The first line contains two integers w and h (1≤w,h≤4000) − the rectangle's sizes.
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.
2 2
1
1 2
0
In the first example there exists only one such rhombus. Its vertices are located at points (1,0), (2,1), (1,2), (0,1).