def lscan; gets.split.map(&:to_i); end a,b,c = lscan if a + b == c puts 'Correct' else puts 'Incorrect' end