import java.util.*;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
int determinent = (b*b)-(4*a*c);
if(determinent>0){
int root1= (int) (-b + Math.sqrt(determinent)) / (int) (2 * a);
int root2= (int)(-b - Math.sqrt(determinent)) / (int)(2 * a);
System.out.println("Real and Distinct");
System.out.println(root2 + " "+ root1);
}
else if(determinent == 0) {
int root1 = -b / (2 * a);
int root2 = -b / (2 * a);
System.out.println("Real and Equal");
System.out.println(root2 + " "+ root1);
}
else {
System.out.println();
}
}
}