a, b, c = [int(x) for x in input().split()] if a + b == c: print("Correct") else: print("Incorrect")