s = list(map(int, input().split())) 

def q1249(a,b,c):
    d = a + b
    if d == c :
        str = 'Correct'
    else:
        str = 'Incorrect'
    return str
    
print(q1249(s[0],s[1],s[2]))