# frozen_string_literal: true def solve A + B == C ? 'Correct' : 'Incorrect' end A, B, C = gets.split.map(&:to_i) puts solve