a,b,c = (int(x) for x in input().split()) kei = a + b if kei == c: print('Correct') else: print('Incorrect')