# https://yukicoder.me/problems/no/1249 a, b, c = list(map(int, input().split())) if (c == a+b): print("Correct") else: print("Incorrect")