a, b, c = gets(chomp: true).split.map(&:to_i) if a + b == c puts "Correct" else puts "Incorrect" end