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