a,b,c = map(int, input().split()) d = a + b if d == c: print("Correct") else: print("Incorrect")