def check(): A, B, C = map(int, input().split()) if A+B==C: return 'Correct' return 'Incorrect' print(check())