a, b, c = gets.chomp.split.map { _1.to_i } if a + b == c puts "Correct" else puts "Incorrect" end