A, B, C = (int(i) for i in input().split()) if A + B == C: print("Correct") else: print("Incorrect")