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