def main(): A, B, C = map(int, (input().split())) if A + B == C: print('Correct') else: print('Incorrect') if __name__ == '__main__': main()