Value = input() Value = Value.split() Value = list(map(int,Value)) A = Value[0] B = Value[1] C = Value[2] if A+B == C : print("Correct") else: print("Incorrect")