The Answer Is Isugeun!

Given integer coefficients A, B, C, classify the roots of Ax^2 + Bx + C = 0 as powers of two, integer roots, or neither.

Easy3MathNumber theoryImplementationBrute forceInterviewNo attempts yetTime limit2sMemory limit256 MB

Problem

Ukje and Juno are arguing over a great mathematical question: whether the roots of a quadratic equation are isugeun.

The equation has the form Ax2+Bx+C=0Ax^2 + Bx + C = 0. When two distinct roots exist, call them nn and mm. When both nn and mm can be written in the form 2K2^K where KK is a positive integer, the equation is isugeun. When the equation is not isugeun but both nn and mm can be written as integers, it is integer roots. All remaining cases are duldattelleotgeun.

Consider x212x+32=0x^2 - 12x + 32 = 0: its roots are 44 and 88, so it is isugeun. The roots of x2+3x10=0x^2 + 3x - 10 = 0 are 22 and 5-5, so it is integer roots. The equation x2+4x+4=0x^2 + 4x + 4 = 0 has the double root 2-2, so it is duldattelleotgeun, and x2+x+1=0x^2 + x + 1 = 0 has nonreal roots, so it is duldattelleotgeun.

Settle the argument: decide the type of the given quadratic equation.

Input

Three nonzero integers AA, BB and CC are given (100A,B,C100-100 \le A, B, C \le 100).

They are the coefficients of the quadratic equation Ax2+Bx+C=0Ax^2 + Bx + C = 0.

Output

Print "이수근" when the answer is isugeun, "정수근" when the answer is integer roots, and "둘다틀렸근" in all remaining cases.