#P1030D. Vasya and Triangle

    ID: 3171 Type: RemoteJudge 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>geometrynumber theory*1800

Vasya and Triangle

No submission language available for this problem.

Description

Vasya has got three integers nn, mm and kk. He'd like to find three integer points (x1,y1)(x_1, y_1), (x2,y2)(x_2, y_2), (x3,y3)(x_3, y_3), such that 0x1,x2,x3n0 \le x_1, x_2, x_3 \le n, 0y1,y2,y3m0 \le y_1, y_2, y_3 \le m and the area of the triangle formed by these points is equal to nmk\frac{nm}{k}.

Help Vasya! Find such points (if it's possible). If there are multiple solutions, print any of them.

The single line contains three integers nn, mm, kk (1n,m1091\le n, m \le 10^9, 2k1092 \le k \le 10^9).

If there are no such points, print "NO".

Otherwise print "YES" in the first line. The next three lines should contain integers xi,yix_i, y_i — coordinates of the points, one point per line. If there are multiple solutions, print any of them.

You can print each letter in any case (upper or lower).

Input

The single line contains three integers nn, mm, kk (1n,m1091\le n, m \le 10^9, 2k1092 \le k \le 10^9).

Output

If there are no such points, print "NO".

Otherwise print "YES" in the first line. The next three lines should contain integers xi,yix_i, y_i — coordinates of the points, one point per line. If there are multiple solutions, print any of them.

You can print each letter in any case (upper or lower).

Samples

Sample Input 1

4 3 3

Sample Output 1

YES
1 0
2 3
4 1

Sample Input 2

4 4 7

Sample Output 2

NO

Note

In the first example area of the triangle should be equal to nmk=4\frac{nm}{k} = 4. The triangle mentioned in the output is pictured below:

In the second example there is no triangle with area nmk=167\frac{nm}{k} = \frac{16}{7}.