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