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