a, b, c = map(int, input().split()) ans = "Incorrect" if a + b == c: ans = "Correct" print(ans)