input = gets s = input.split(" ") a1 = s[0].to_i + s[1].to_i a2 = s[2].to_i if a1 == a2 then puts "Correct" else puts "Incorrect" end