def main(): a, b, c = map(int, input().split()) print('Correct' if a+b == c else 'Incorrect') if __name__ == '__main__': main()