시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 1024 MB78403248.485%

문제

In this problem, 'lattice points' in the plane are points with integer coordinates.

In order to contain his cows, Farmer John constructs a triangular electric fence by stringing a "hot" wire from the origin (0,0) to a lattice point (n,m), then to a lattice point on the positive x axis (p,0) (p>0), and then back to the origin (0,0).

A cow can be placed at each lattice point within the fence without touching the fence (very thin cows). Cows can not be placed on lattice points that the fence touches. How many cows can a given fence hold?

입력

The single input line contains three space-separated integers that denote n, m, and p.

출력

Print a line with a single integer that represents the number of cows the specified fence can hold.

제한

  • 0 < n < 32768
  • 0 < m < 32768
  • 0 < p < 65536

예제 입력 1

7 5 10

예제 출력 1

20