# input = "4 1 5" input = gets # 数値に分割する a, b, c = input.split(" ").map(&:to_i) if a + b == c puts "Correct" else puts "Incorrect" end