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