import std;

void main() {
    auto input = readln.split.to!(int[]);
    writeln(input[0] + input[1] == input[2] ? "Correct" : "Incorrect");
}