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