a,b,c = map(int, input().split())

if a+b==c:
    a= ["Correct"]

else:
    a= ["Incorrect"]
print("\n".join(map(str, a)))