// Arup Guha
// 12/5/2015
// Solution to Fall 2015 UCF HS Online Contest Problem: Wrut Row

import java.util.*;

public class wrut {

	public static void main(String[] args) {

		Scanner stdin = new Scanner(System.in);
		int numCases = stdin.nextInt();

		// Process each case.
		for (int loop=0; loop<numCases; loop++) {

			// Read in the three numbers.
			int a = stdin.nextInt();
			int b = stdin.nextInt();
			int c = stdin.nextInt();

			// See if it's correct or not and output.
			if (a+b == c)
				System.out.println("Correct!");
			else
				System.out.println("Wrut Row!");

		}
	}
}